Steve Shaw

Results 31 comments of Steve Shaw
trafficstars

Another possible workaround is to move `OnPropertyChanged` lines to an event handler attached to `SwipeEnded` event.

Certain UI changes in OnAppearing have always been unreliable in Xamarin.Forms. Perhaps the improvements for Maui have not helped avoid this "twilight zone". Here, its those `OnPropertyChanged` calls that can't...

See the two possible work-arounds in #13323: * `ItemSizingStrategy="MeasureFirstItem"`. * Display at first with no items. After a slight delay, add the items.

Possible work-around is to create new dictionary, then use MergedDictionaries to append to existing one. But I wouldn't expect that to work any better than what you did. I wonder...

FYI: The corresponding StackOverflow question is https://stackoverflow.com/questions/76560978/how-to-find-cause-of-app-crashing-on-ios-device-but-not-on-simulator-no-crash.

FYI: See comments in related StackOverflow thread. https://stackoverflow.com/questions/77013139/scrollview-is-getting-extended

Corresponding StackOverflow post: https://stackoverflow.com/q/76604496/199364 In the screenshot there, and the video here, I see that variable heights are not being correctly maintained. When there is a taller row, the next...

@PureWeen, Liyun Zhang tested that. See https://stackoverflow.com/q/76277821/199364. Also see my answer. Sam’s comment says the bug also happened with await Shell.Current.GotoAsync($"//{nameof(Page2)}"); Therefore, the stack isn’t getting correctly cleared. // isn’t...

@drasticactions - looks closely related. Fundamental issue with drag & drop from other app.

[StackOverflow / Can a Shell TabBar have a tab without a content page?](https://stackoverflow.com/questions/74690592/can-a-shell-tabbar-have-a-tab-without-a-content-page) shows another use case where the inability to put code in OnAppearing for each page is a...