webwarrior-ws
webwarrior-ws
@knocte removing parentheses will make rebasing MAUI PR harder
> I tested this PR in Android and it's causing a bad layout. It's the same as in MAUI PR.
> > It's the same as in MAUI PR. > > So? Let's fix it. But in MAUI version layout is correct. And the reason why StackLayout was replaced by...
The reason for incorrect layout is that layout contains invisible elements that still take space in Xamarin.Forms. I haven't figured out how to fix it.
Layout of SendPage should be fixed now.
I still had footer visible. Maybe setting explicit row height for footer messed things up. I set row height back to "Auto" and reduced margins. @knocte take a look, hopefully...
I can't debug XF Android, and I don't know what exactly is wrong there. Maybe grid layout for BalancesPage never worked correctly for XF, only for MAUI.
@knocte I've added a commit and CI has finished
I can't get `Grid` layout working the same way as `StackLayout` did on XF. I can try `FlexLayout`, but then I'll also have to make sure it works as expected...
> > > I can try FlexLayout > > > > > > Ok. > > Or combine (VerticalStackLayout+HorizontalStackLayout)s? (I got this idea from https://github.com/dotnet/maui/wiki/Xamarin.Forms----MAUI.Controls-Layout-Differences ) There are no `VerticalStackLayout`...