Skip to content

Commit

Permalink
Frontend(XF,Maui): fix in WelcomePage (datepicker)
Browse files Browse the repository at this point in the history
Fixed layout of date picker in WelcomePage on Maui/Gtk.
  • Loading branch information
webwarrior-ws committed Jun 27, 2024
1 parent 25ea1cd commit 8fdb6fe
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/GWallet.Frontend.XF/WelcomePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,22 @@
Grid.Row="3"
/>

<StackLayout
Orientation="Horizontal"
<Grid
ColumnDefinitions="*,*"
Grid.Row="4"
>
<Label Text="Date of Birth (d/m/y):"
FontSize="Small"
HorizontalOptions="Start"
VerticalOptions="Center" />
VerticalOptions="Center"
Grid.Column="0"/>
<DatePicker x:Name="dobDatePicker"
Format="dd/MM/yyyy"
HorizontalOptions="End"
VerticalOptions="Center"
DateSelected="OnDobDateChanged" />
</StackLayout>
DateSelected="OnDobDateChanged"
Grid.Column="1"/>
</Grid>

<Entry x:Name="emailEntry" IsPassword="false"
Placeholder="E-mail address"
Expand Down

0 comments on commit 8fdb6fe

Please sign in to comment.