Open danleash opened 6 months ago
Check this section of the ReadMe and this video.
Create a file Platform/Android/Resources/values/styles.xml file in the github readme file. the handler will show up
Create a file Platform/Android/Resources/values/styles.xml file in the github readme file. the handler will show up
What you have to do is to follow this section of the README.md
On Android, make sure your application's theme extends the Material3 theme. This mean you need a Platforms/Android/Resources/values/styles.xml file with the following content:
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="Maui.MainTheme" parent="Theme.Material3.DayNight"></style>
</resources>
If you already have this file, just make sure the Maui.MainTheme style inherits the Theme.Material3.DayNight parent.
With this the handle finally shows in my Android app.
Hello, I'm trying to integrate bottom sheet into my application. I am setting the values HasHandle to true however, it is not being shown. Tried:
var page = new BottomSheetElement(); page.HasHandle = true; page.HandleColor = Colors.Salmon;
</the49:BottomSheet>
Any ideas what would cause HasHandle not to work?