Is it possible to create a similar side menu in Xamarin.Forms
?
相关问题
- Custom controls disabled. There was an internal is
- How to implement only emoji keyboard for Entry?
- Error:Xamarin.Forms targets have been imported mul
- Detection of swiping on a normal Android Activity
- HttpClient not accepting Authorization headers (40
相关文章
- Xamarin form MessagingCenter Unsubscribe is not wo
- The type initializer for 'SQLite.SQLiteConnect
- How to use native C++ libraries in Mono for Androi
- Xamarin build error: defining a default interface
- Xamarin Android Player Error when attempting to fi
- How to change the Back Button Text on Xamarin.Form
- Can Android Studio and Visual Studio safely share
- Android Webview cannot render the pdf sometimes an
You could change the width of the
Master
page inMasterDetailPageRenderer
.First, create a
BindableProperty
in your customMasterDetailPage
class:Second, in your
MasterDetailPageRenderer
, set theMyMasterDetailPage
width like this:Usage, in my
App.xaml.cs
, I set the page like this:Update:
About
Xamarin.iOS
, you could refer to this, inspired by P3PPP's project, the only thing you need do is change this line in MyPhoneMasterDetailRenderer.cs:If you don't want to use the built in master/detail slide out page, as it is too wide and cannot be resized easily, you could probably use the slide over kit.
It is a free open source component that should allow you to do what you need.
Slide Over Kit details here