All Projects → ssowri1 → SPNavigationDrawerwithTABbar

ssowri1 / SPNavigationDrawerwithTABbar

Licence: Apache-2.0 License
This is a Custom Navigation controller along with tab bar controller and it provides a navigation slider to easy to access other controllers in iOS and it's made in Swift 3.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to SPNavigationDrawerwithTABbar

Materialdrawer
The flexible, easy to use, all in one drawer library for your Android project. Now brand new with material 2 design.
Stars: ✭ 11,498 (+12965.91%)
Mutual labels:  navigation-drawer
GoneVisible
GoneVisible is a UIView extension that uses AutoLayout to add "gone" state like Android.
Stars: ✭ 27 (-69.32%)
Mutual labels:  uiview-extension
Navigation-ListView
This post is improvements to the previous posts discussed on customization of navigation drawer and highlighting specific row of expandable listview. Since there are few comments regarding the highlight of expandable list view post, thought to show with new post using custom navigation drawer. But how can we see the highlight of the expandable l…
Stars: ✭ 14 (-84.09%)
Mutual labels:  navigation-drawer
Materialnavigationview Android
📱 Android Library to implement Rich, Beautiful, Stylish 😍 Material Navigation View for your project with Material Design Guidelines. Easy to use.
Stars: ✭ 168 (+90.91%)
Mutual labels:  navigation-drawer
unity navigation drawer
The navigation drawer is a UI panel that shows your app's main navigation menu. It is hidden when not in use, but appears when the user swipes a finger from the left edge of the screen or, when at the top level of the app, the user touches the drawer icon in the app bar.
Stars: ✭ 49 (-44.32%)
Mutual labels:  navigation-drawer
Material-Backdrop-Android
Material Backdrop
Stars: ✭ 106 (+20.45%)
Mutual labels:  navigation-drawer
Drawer Behavior Flutter
Drawer behavior is a library that provide an extra behavior on drawer, such as, move view or scaling view's height while drawer on slide.
Stars: ✭ 110 (+25%)
Mutual labels:  navigation-drawer
drawer-with-bottom-navigation-architecture
Sample android kotlin project with both drawer and bottom navigation together
Stars: ✭ 42 (-52.27%)
Mutual labels:  navigation-drawer
DKNavigationDrawer
Navigation Drawer for iOS using Swift. https://media.giphy.com/media/I45syjhreC0Rq/giphy.gif
Stars: ✭ 17 (-80.68%)
Mutual labels:  navigation-drawer
minavdrawer
Easy to add different animations into standard NavigationDrawer.
Stars: ✭ 93 (+5.68%)
Mutual labels:  navigation-drawer
Material Design Nav Drawer
Sample app showcasing the Navigation Drawer according Material Design guidelines. Check out the article to further explanation.
Stars: ✭ 238 (+170.45%)
Mutual labels:  navigation-drawer
Vitrin
A simple app that shows categories, subcategories and items.
Stars: ✭ 70 (-20.45%)
Mutual labels:  navigation-drawer
flutter-bottomAppBar
Watch the tutorial video on Youtube ->
Stars: ✭ 15 (-82.95%)
Mutual labels:  tabbarcontroller
Material
A UI/UX framework for creating beautiful applications.
Stars: ✭ 11,870 (+13388.64%)
Mutual labels:  navigation-drawer
DualNavDrawer
Double-sided Navigation Drawer for Android Apps.
Stars: ✭ 15 (-82.95%)
Mutual labels:  navigation-drawer
Sidenavigation
Simple side navitation control for iOS in Swift , Right and Left sides, Support iPad & Object-C
Stars: ✭ 117 (+32.95%)
Mutual labels:  navigation-drawer
Navigation-Drawer
Styling Navigation Drawer
Stars: ✭ 38 (-56.82%)
Mutual labels:  navigation-drawer
mini-project
An android eCommerce application for students through which they can buy and sell used goods .
Stars: ✭ 26 (-70.45%)
Mutual labels:  navigation-drawer
react-native-segment-controller
A react-native segment controller(Tab) for both ios and android.
Stars: ✭ 18 (-79.55%)
Mutual labels:  tabbarcontroller
MightyTabBar
How tab bars should work.
Stars: ✭ 72 (-18.18%)
Mutual labels:  tabbarcontroller

SPNavigationDrawer

This is a Custom Navigation controller along with tab bar controller in iOS and it's made in Swift 3. There are 3 steps only to integrate the SPNavigationDrawerWithTABbar. Using SPNavigationDrawer can integrate NavigationDrawer alongwith TABbarController

Screenshot

INSTALLATION

  • Drag and drop the Configuration folder into your project and initialize it.

  • Then link the delegate protocol for accessing the delegate methods.

  • let's implement the drawer view object and set delecate to current view controller.

  • Connect the tab bar controller with your view controller in StoryBoard

  • show the Navigation drawer (drawerVw.show())

       //**** REQUIRED ****//
      //**** Implement the drawer view object and set delecate to current view controller
      drawerVw = DrawerView(aryControllers:DrawerArray.array, isBlurEffect:true, isHeaderInTop:false, controller:self)
      drawerVw.delegate = self
      
      // Can change account holder name
      drawerVw.changeUserName(name: "Sowrirajan Sugumaran")
      
      // show the Navigation drawer.
      drawerVw.show()
    

Push the viewcontroller which is selected by user.

// To push the viewcontroller which is selected by user.
func pushTo(viewController: UIViewController) {
    self.navigationController?.pushViewController(viewController, animated: true)
}

Denote the storyboard of viewcontrollers which want you show on SPNavigationDrawer.

    struct DrawerArray {
    static let array:NSArray = ["MyAccount", "Offers", "History","Offers", "Language", "Settings", "History"]
    }

Authors

Ssowri1

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details

Support or Contact

Having trouble with Pages? Kindly contact support and we’ll help you sort it out.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].