Jeff
Jeff
> @jonmdev I've had better luck using a StackLayout instead of VerticalStackLayout for most of my layout issues, so you may be interested in that as a workaround. (I know...
I had a similar issue with flyout header on ios where it wasnt sizing properly when not using safearea. Ended up removing it and just adding a header to the...
@nsood9 Something like this. You can place whatever you'd like in AppShell.xaml ``` AppShell.xaml ``` FlyoutContentComponent.xaml ```FlyoutContentComponent.xaml ```
No go on the iOS side. Will follow up if I go this route
Encountering this with `Shell.NavBarIsVisible="False"` set in my view.xaml (contentpage) with a custom hamburger to trigger `Shell.Current.FlyoutIsPresented = true` net7.0 in VS 17.6.5 @TheLankyScottishNerd This works great though thank you very...
> ScrollTo(0) @joaquin-avelon 🤯 THANK YOU! I was using ScrollTo(myCollection.Last()) in the CollectionChanged function to no avail. This is beautiful. Thank you once again