We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2400ff5 commit 5e96dc1Copy full SHA for 5e96dc1
1 file changed
src/Codebreaker.MAUI/Views/Components/PegSelectionView.xaml
@@ -12,8 +12,11 @@
12
<ContentView.Resources>
13
<conv:DictionaryToValuesConverter x:Key="DictionaryToValuesConverter" />
14
</ContentView.Resources>
15
- <HorizontalStackLayout Margin="10,0"
16
- BindableLayout.ItemsSource="{Binding Path=Fields, Mode=OneWay}">
+ <VerticalStackLayout>
+ <Label Text="Select your colors" FontSize="Header" />
17
+ <HorizontalStackLayout
18
+ BindableLayout.ItemsSource="{Binding Path=Fields, Mode=OneWay}"
19
+ Spacing="4">
20
<BindableLayout.ItemTemplate>
21
<DataTemplate>
22
<Picker
@@ -29,4 +32,5 @@
29
32
</DataTemplate>
30
33
</BindableLayout.ItemTemplate>
31
34
</HorizontalStackLayout>
35
+ </VerticalStackLayout>
36
</ContentView>
0 commit comments