Skip to content

Instantly share code, notes, and snippets.

@davidmaogomezz
Created September 16, 2015 18:03
Show Gist options
  • Save davidmaogomezz/374c8ce2c17f54c72660 to your computer and use it in GitHub Desktop.
Save davidmaogomezz/374c8ce2c17f54c72660 to your computer and use it in GitHub Desktop.
Ionic BottomSheet
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Ionic Modal</title>
<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
</head>
<body ng-controller="AppCtrl">
<ion-header-bar class="bar-positive">
<h1 class="title">Particles</h1>
<div class="buttons">
<button class="button button-icon ion-compose" ng-click="modal.show()">
</button>
</div>
</ion-header-bar>
<ion-content>
<ion-list>
<ion-item ng-repeat="particle in particles">
{{particle.name}}
</ion-item>
</ion-list>
</ion-content>
<script id="templates/bottom-sheet.html" type="text/ng-template">
<ion-bottom-sheet-view>
<ion-header-bar align-title="left">
<h1 class="title">New Particle</h1>
<button class="button button-icon icon ion-android-close" ng-click="modal.hide()"></button>
</ion-header-bar>
<ion-content class="padding">
<div class="list">
<label class="item item-input">
<span class="input-label">Name</span>
<input ng-model="newParticle.name" type="text">
</label>
<button class="button button-full button-positive" ng-click="createParticle(newParticle)">Add</button>
</div>
</ion-content>
</ion-bottom-sheet-view>
</script>
</body>
</html>

Ionic BottomSheet

Demo of an Ionic BottomSheet.

This demo uses a custom bottom sheet directive based on the existing modal directive.

A Pen by Jesus Abarca Sanchez on CodePen.

License.

angular.module('ionicApp', ['ionic'])
.controller('AppCtrl', function($scope, $ionicModal) {
$scope.particles = [
{ name: 'Electron' },
{ name: 'Neutron' },
{ name: 'Proton' },
];
$ionicModal.fromTemplateUrl('templates/bottom-sheet.html', {
scope: $scope,
viewType: 'bottom-sheet',
animation: 'slide-in-up'
}).then(function(modal) {
$scope.modal = modal;
});
$scope.createParticle = function(u) {
$scope.particles.push({ name: u.name});
$scope.modal.hide();
};
})
.directive('ionBottomSheet', [function() {
return {
restrict: 'E',
transclude: true,
replace: true,
controller: [function() {}],
template: '<div class="modal-wrapper" ng-transclude></div>'
};
}])
.directive('ionBottomSheetView', function() {
return {
restrict: 'E',
compile: function(element) {
element.addClass('bottom-sheet modal');
}
};
});
.modal.bottom-sheet {
bottom: 0;
min-height: initial;
top: initial;
height: 50%;
border-width: 1px;
border-style: solid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment