Datepicker, Timepicker, Picker
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
|
||||
<Border Style="{StaticResource Border.Page}">
|
||||
<ScrollView>
|
||||
<Grid RowDefinitions="Auto, Auto, Auto, Auto, Auto, Auto,Auto, Auto, Auto , Auto"
|
||||
<Grid RowDefinitions="Auto, Auto, Auto, Auto, Auto, Auto, Auto, Auto, Auto,Auto, Auto, Auto , Auto"
|
||||
ColumnDefinitions="Auto, *"
|
||||
Style="{StaticResource Grid.Page}">
|
||||
|
||||
@ -87,10 +87,41 @@
|
||||
</HorizontalStackLayout>
|
||||
</FlexLayout>
|
||||
|
||||
<partial:AddressView Grid.Row="8"
|
||||
<Label Text="Birth Date"
|
||||
Grid.Row="8"/>
|
||||
<DatePicker Grid.Row="8"
|
||||
Grid.Column="1"
|
||||
HorizontalOptions="Start"/>
|
||||
<Label Text="Start Time"
|
||||
Grid.Row="9"/>
|
||||
<TimePicker Grid.Row="9"
|
||||
Grid.Column="1"
|
||||
Time="06:00:00"/>
|
||||
|
||||
<Label Text="Phone"
|
||||
Grid.Row="10"/>
|
||||
<FlexLayout Grid.Row="10"
|
||||
Grid.Column="1"
|
||||
Wrap="Wrap"
|
||||
Direction="Row">
|
||||
<HorizontalStackLayout>
|
||||
<Entry MinimumWidthRequest="120"/>
|
||||
<Picker>
|
||||
<Picker.ItemsSource>
|
||||
<x:Array Type="{x:Type x:String}">
|
||||
<x:String>Home</x:String>
|
||||
<x:String>Mobile</x:String>
|
||||
<x:String>Other</x:String>
|
||||
</x:Array>
|
||||
</Picker.ItemsSource>
|
||||
</Picker>
|
||||
</HorizontalStackLayout>
|
||||
</FlexLayout>
|
||||
|
||||
<partial:AddressView Grid.Row="11"
|
||||
Grid.ColumnSpan="2" />
|
||||
|
||||
<HorizontalStackLayout Grid.Row="9"
|
||||
<HorizontalStackLayout Grid.Row="12"
|
||||
Grid.Column="1"
|
||||
Spacing="5">
|
||||
<Button Text="Save" />
|
||||
|
||||
Reference in New Issue
Block a user