We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a377de commit 3e592c2Copy full SHA for 3e592c2
src/GWallet.Frontend.XF/WelcomePage.xaml
@@ -53,20 +53,22 @@
53
Grid.Row="3"
54
/>
55
56
- <StackLayout
57
- Orientation="Horizontal"
+ <Grid
+ ColumnDefinitions="*,*"
58
Grid.Row="4"
59
>
60
<Label Text="Date of Birth (d/m/y):"
61
FontSize="Small"
62
HorizontalOptions="Start"
63
- VerticalOptions="Center" />
+ VerticalOptions="Center"
64
+ Grid.Column="0"/>
65
<DatePicker x:Name="dobDatePicker"
66
Format="dd/MM/yyyy"
67
HorizontalOptions="End"
68
VerticalOptions="Center"
- DateSelected="OnDobDateChanged" />
69
- </StackLayout>
+ DateSelected="OnDobDateChanged"
70
+ Grid.Column="1"/>
71
+ </Grid>
72
73
<Entry x:Name="emailEntry" IsPassword="false"
74
Placeholder="E-mail address"
0 commit comments