Skip to content

Instantly share code, notes, and snippets.

@taivo
Created December 16, 2014 02:37
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save taivo/fd08f6c960aacc11af6f to your computer and use it in GitHub Desktop.
Save taivo/fd08f6c960aacc11af6f to your computer and use it in GitHub Desktop.
Swipe navigation for ion-tabs (for ionic framework v 1.0.0)
angular.module('yourModule')
.directive('tabsSwipable', ['$ionicGesture', function($ionicGesture){
//
// make ionTabs swipable. leftswipe -> nextTab, rightswipe -> prevTab
// Usage: just add this as an attribute in the ionTabs tag
// <ion-tabs tabs-swipable> ... </ion-tabs>
//
return {
restrict: 'A',
require: 'ionTabs',
link: function(scope, elm, attrs, tabsCtrl){
var onSwipeLeft = function(){
var target = tabsCtrl.selectedIndex() + 1;
if(target < tabsCtrl.tabs.length){
scope.$apply(tabsCtrl.select(target));
}
};
var onSwipeRight = function(){
var target = tabsCtrl.selectedIndex() - 1;
if(target >= 0){
scope.$apply(tabsCtrl.select(target));
}
};
var swipeGesture = $ionicGesture.on('swipeleft', onSwipeLeft, elm).on('swiperight', onSwipeRight);
scope.$on('$destroy', function() {
$ionicGesture.off(swipeGesture, 'swipeleft', onSwipeLeft);
$ionicGesture.off(swipeGesture, 'swiperight', onSwipeRight);
});
}
};
}]);
@chugas
Copy link

chugas commented Nov 20, 2015

How can I add animation in the transition ?

@kbaggott
Copy link

kbaggott commented Mar 8, 2016

for any body struggling with this I worked around the problem using a watcher on the selected index and then a "reverse" css style on ng-class:

js:

$scope.previousTab = 0;
$scope.currentTab = 0;
$scope.$watch(function() {return $ionicTabsDelegate.selectedIndex();}, function(index) {
      $scope.previousTab = $scope.currentTab;
      $scope.currentTab = index;
});

html:
<ion-tabs tabs-swipable class="tabs-positive slide-left-right" ng-class="{reverse: currentTab < previousTab}">

hope this helps someone else out.

@SrijithRad
Copy link

Here is a starter template with the above gist. Would try to add animation. Contributions are welcome

https://github.com/SrijithRad/ionic-swipeable-tabs-demo

@SouhailBS
Copy link

In case someone else is looking for animated tabs or swipable tabs, i just created a directive (inspired by @SrijithRad ) for that matter.
just give it a try, GitHub repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment