https://i.imgur.com/i8n8t1e.mp4
Like the twitter app, the title bar gradually hides and shows along with the scrolling of the scrollbar. How does it implement?
I searched bottom bar issue but can not find the title bar solution.
I want to implement this feature using MAUI, but I don't know where to start. I hope to receive your assistance.
Thanks.
Easiest way forward is to just take a
ScrollViewand hide and display the NavBar. The problem with that is flicker and sensitivity of the touchscreen. So you need to consider a throttle or what I use, a debounce timer (common use when you want an event not to happen to often or to rapidly.) An simple proof of concept is this code below. A much nicer way is to use animation and do a real control, but then you need to use handlers and native code.xaml
Code