All Projects → Clancey → Flyoutnavigation

Clancey / Flyoutnavigation

Licence: other

Projects that are alternatives of or similar to Flyoutnavigation

Hookrouter
The flexible, and fast router for react that is entirely based on hooks
Stars: ✭ 1,200 (+1112.12%)
Mutual labels:  navigation
Uinavigation
A UE4 plugin designed to help easily make UMG menus navigable by mouse, keyboard and gamepad
Stars: ✭ 88 (-11.11%)
Mutual labels:  navigation
React Native Fluid
Declarative animations for React Native and React Native Web.
Stars: ✭ 92 (-7.07%)
Mutual labels:  navigation
Rsband local planner
A ROS move_base local planner plugin for Car-Like robots with Ackermann or 4-Wheel-Steering.
Stars: ✭ 78 (-21.21%)
Mutual labels:  navigation
Slidingtabbar
A custom TabBar view with sliding animation written in Swift.
Stars: ✭ 84 (-15.15%)
Mutual labels:  navigation
Mrpt navigation
ROS nodes wrapping core MRPT functionality: localization, autonomous navigation, rawlogs, etc.
Stars: ✭ 90 (-9.09%)
Mutual labels:  navigation
Drawer Menu Swift
Drawer menu implementation in Swift 4
Stars: ✭ 74 (-25.25%)
Mutual labels:  navigation
Rvo2 Unity
use rvo2 (Optimal Reciprocal Collision Avoidance) in unity.
Stars: ✭ 97 (-2.02%)
Mutual labels:  navigation
Modo
Navigation library based on UDF principles
Stars: ✭ 85 (-14.14%)
Mutual labels:  navigation
Xam.plugin.simplebottomdrawer
Just a nice and simple BottomDrawer for your Xamarin Forms project
Stars: ✭ 92 (-7.07%)
Mutual labels:  navigation
Promotion Menu
RubyMotion gem allowing you to easily setup a facebook or Path style hidden slide menu easily with the ProMotion gem.
Stars: ✭ 78 (-21.21%)
Mutual labels:  navigation
Navigation
ROS Navigation stack. Code for finding where the robot is and how it can get somewhere else.
Stars: ✭ 1,248 (+1160.61%)
Mutual labels:  navigation
Appearancenavigationcontroller
Example with advanced configuration of the navigation controller's appearance
Stars: ✭ 91 (-8.08%)
Mutual labels:  navigation
Dart
Extras binding and intent builders for Android apps.
Stars: ✭ 1,203 (+1115.15%)
Mutual labels:  navigation
Efnavigationbar
An ordinary custom navigation bar.
Stars: ✭ 92 (-7.07%)
Mutual labels:  navigation
Lottiebottomnavbar
A Customisable bottom navbar with Lottie animation
Stars: ✭ 76 (-23.23%)
Mutual labels:  navigation
Gradientnavigation
颜色渐变的导航栏、位置可变的导航栏
Stars: ✭ 90 (-9.09%)
Mutual labels:  navigation
React Native Navigation Drawer Extension
Drawer API built on top of wix react-native-navigation for iOS and Android (with TypeScript!)
Stars: ✭ 98 (-1.01%)
Mutual labels:  navigation
Cleanarchitecture
Android Kotlin Clean Architecture
Stars: ✭ 94 (-5.05%)
Mutual labels:  navigation
Bootstrap Breadcrumbs
Django template tags for easy breadcrumbs using twitter bootstrap css classes or custom template
Stars: ✭ 91 (-8.08%)
Mutual labels:  navigation

The FlyoutNavigationController presents a simple navigation view that appears to slide out from underneath a main view, allowing you to navigate among a list of view controllers. The same view also functions as a UISplitViewController on the iPad.

using FlyoutNavigation;
using MonoTouch.Dialog;
...
public override void ViewDidLoad ()
{
	base.ViewDidLoad ();
	var navigation = new FlyoutNavigationController {
		// Create the navigation menu
		NavigationRoot = new RootElement ("Navigation") {
			new Section ("Pages") {
				new StringElement ("Animals"),
				new StringElement ("Vegetables"),
				new StringElement ("Minerals"),
			}
		},
		// Supply view controllers corresponding to menu items:
		ViewControllers = new [] {
			new UIViewController { View = new UILabel { Text = "Animals (drag right)" } },
			new UIViewController { View = new UILabel { Text = "Vegetables (drag right)" } },
			new UIViewController { View = new UILabel { Text = "Minerals (drag right)" } },
		},
	};
	// Specify navigation position
	navigation.Position = FlyOutNavigationPosition.Left;
	// Show the navigation view
	navigation.ToggleMenu ();
	View.AddSubview (navigation.View);
}
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].