Skip to content

Commit 3e592c2

Browse files
committed
Frontend(XF,Maui): fix in WelcomePage (datepicker)
Fixed layout of date picker in WelcomePage on Maui/Gtk. It was way too tall, now it has height of about one line of text, like on other platforms.
1 parent 4a377de commit 3e592c2

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/GWallet.Frontend.XF/WelcomePage.xaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,22 @@
5353
Grid.Row="3"
5454
/>
5555

56-
<StackLayout
57-
Orientation="Horizontal"
56+
<Grid
57+
ColumnDefinitions="*,*"
5858
Grid.Row="4"
5959
>
6060
<Label Text="Date of Birth (d/m/y):"
6161
FontSize="Small"
6262
HorizontalOptions="Start"
63-
VerticalOptions="Center" />
63+
VerticalOptions="Center"
64+
Grid.Column="0"/>
6465
<DatePicker x:Name="dobDatePicker"
6566
Format="dd/MM/yyyy"
6667
HorizontalOptions="End"
6768
VerticalOptions="Center"
68-
DateSelected="OnDobDateChanged" />
69-
</StackLayout>
69+
DateSelected="OnDobDateChanged"
70+
Grid.Column="1"/>
71+
</Grid>
7072

7173
<Entry x:Name="emailEntry" IsPassword="false"
7274
Placeholder="E-mail address"

0 commit comments

Comments
 (0)