I have a .Net Maui project and I want a structure that stands just above the NavigationView at the bottom, as in music applications such as Apple Music, and moves up simultaneously as I drag it upwards with my hand, but I couldn't find how to do it.
So far, I have created this opening section with a page that opens upwards with a simple event trigger, but it does not follow my hand and does not look good. Is it possible to use bottom sheets? If possible, is it possible to launch it from just above the Navigation View instead of from the bottom of the page?
Some codes that I tried but did not work(Another Project): Bottom Bar:
<AbsoluteLayout>
<BoxView Color="Teal" HeightRequest="200" x:Name="monster">
<BoxView.GestureRecognizers>
<PanGestureRecognizer PanUpdated="PanGestureRecognizer_PanUpdated" />
</BoxView.GestureRecognizers>
</BoxView>
</AbsoluteLayout>
Main Page:
<cc:BottomPage HeightRequest="100" Grid.Row="1" toolkit:DockLayout.DockPosition="Bottom"/>