# ScnSideMenu **Repository Path**: master/ScnSideMenu ## Basic Information - **Project Name**: ScnSideMenu - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ScnSideMenu ====================== Xamarin.Forms side menu control (targeted at Android & iOS) - it lets you add sliding menus (left and right) to you application. Control Structure =========================================== Bellow you may see control schema: ![Main](Screenshots/Droid/SideMenuSample.png) Screenshots of the real app usign sliding menu follow (find app sources at https://github.com/ScienceSoft-Inc/XamarinDiscountsApp): ![Main](Screenshots/Droid/SideMenuRealApp.png) How to use the control in Xamarin.Forms app =========================================== In order to show or hide the menu set the properties "IsShowLeftPanel" and "IsShowRightPanel" to TRUE or FALSE or use swipe gestures near screen border. In order to have gestures working you need to have platform specific renderers initialized. iOS: ```cs Xamarin.Forms.Forms.Init(); ViewGesturesRenderer.Init(); ``` Android: ```cs Xamarin.Forms.Forms.Init(this, bundle); ViewGesturesRenderer.Init(); ``` See sample usage here: https://github.com/ScienceSoft-Inc/ScnSideMenu/tree/master/ScnSideMenu/Sample/SimpleSideMenu