All Projects → thedillonb → MonoTouch.SlideoutNavigation

thedillonb / MonoTouch.SlideoutNavigation

Licence: other
A MonoTouch slide-out UI component

Programming Languages

C#
18002 projects
F#
602 projects
shell
77523 projects

Projects that are alternatives of or similar to MonoTouch.SlideoutNavigation

AppRopio.Mobile
AppRopio - mobile apps builder for iOS/Android based on Xamarin
Stars: ✭ 16 (-60.98%)
Mutual labels:  xamarin, monotouch
Mvvmcross
The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac.
Stars: ✭ 3,594 (+8665.85%)
Mutual labels:  xamarin, monotouch
Xamarin-Sidebar
A slideout navigation control for Xamarin.iOS
Stars: ✭ 113 (+175.61%)
Mutual labels:  xamarin, slideout-menu
FocusOnXamarin
NET Conf: Focus on Xamarin samples
Stars: ✭ 55 (+34.15%)
Mutual labels:  xamarin
YuzuMarker
🍋 [WIP] Manga Translation Tool
Stars: ✭ 76 (+85.37%)
Mutual labels:  xamarin
PTVGlass
Melbourne Public Transport timetable for Google Glass
Stars: ✭ 41 (+0%)
Mutual labels:  xamarin
Plugin.NFC
A Cross-Platform NFC (Near Field Communication) plugin to easily read and write NFC tags in your application.
Stars: ✭ 113 (+175.61%)
Mutual labels:  xamarin
DotNetGeoJson
GeoJson library for .Net
Stars: ✭ 22 (-46.34%)
Mutual labels:  xamarin
Xamarin.Android.OpenCV
C# bindings for the OpenCV Android SDK
Stars: ✭ 87 (+112.2%)
Mutual labels:  xamarin
Xamarin.MediaGallery
This plugin is designed to picking and save images and video files from native gallery of Android and iOS devices and capture photos
Stars: ✭ 106 (+158.54%)
Mutual labels:  xamarin
MvvmCross-Dreams
Xamarin MvvmCross DREAMS is an opinionated take on how to make an MvvmCross app.
Stars: ✭ 30 (-26.83%)
Mutual labels:  xamarin
XamarinClipboardPlugin
Cross Platform Clipboard access for Xamarin
Stars: ✭ 24 (-41.46%)
Mutual labels:  xamarin
PCLExt.FileStorage
Portable Storage APIs
Stars: ✭ 35 (-14.63%)
Mutual labels:  xamarin
PastelXamarinIos
🌒 Gradient animations on Xamarin-iOS
Stars: ✭ 17 (-58.54%)
Mutual labels:  xamarin
PrismHandsOn
Prism for Xamarin.Forms入門 Hands-on
Stars: ✭ 22 (-46.34%)
Mutual labels:  xamarin
Vaser
Vaser is a powerful high performance event based network engine library for C# .Net. It’s possible to start multiple servers in one program and use the same network code for all servers. In the network communication are all strings are omitted, instead it is based on a unique binary identifier, which the CPU and memory relieves massively.
Stars: ✭ 23 (-43.9%)
Mutual labels:  xamarin
ScreenshotPlugin
A simple Screenshot plugin for Xamarin and Windows to get and save screenshot in yours apps.
Stars: ✭ 32 (-21.95%)
Mutual labels:  xamarin
vs-material-icons-generator
This plugin will help you to set material design icons to your Xamarin projects In Visual Studio.
Stars: ✭ 50 (+21.95%)
Mutual labels:  xamarin
parquet-dotnet
🐬 Apache Parquet for modern .Net
Stars: ✭ 199 (+385.37%)
Mutual labels:  xamarin
Xamarin.Forms.GoogleMaps.Clustering
A map library that brings support for clustering for Xamarin.Forms.GoogleMaps.
Stars: ✭ 23 (-43.9%)
Mutual labels:  xamarin

MonoTouch.SlideoutNavigation

Description

Provides a facebook style slide out navigation control. The UINavigationController is built into the library and the proper buttons and slide mechanics are already setup for you.

You can press "menu" button or make a right pan motion to reveal the menu. To close, you can click the former view or make a left pan motion.

In Action

Home Screen Open

Checkout the video at youtube: http://www.youtube.com/watch?v=YnDURn_Y60E

Usage

//Instantiate the controller
var slideoutNav = new SlideoutNavigationController();

//Assign the menu ViewController to our nib controller
//See the sample project for a more detailed menu controller
//such as a tableview using MonoTouch.Dialog
slideoutNav.MenuView = new UIViewController("menunib", null);

//Assign the Top view controller which is seen first before
//you slide over to see the menu.
slideoutNav.TopView = new UIViewController("firstviewnib", null);

//Assign the controller to be displayed!
window.RootViewController = slideoutNav;

Licensing

Copyright 2012 Dillon Buchanan

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

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].