-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainPage.xaml
75 lines (75 loc) · 3.11 KB
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="ScrollViewKeyboardIssueIos.MainPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
Shell.NavBarIsVisible="False">
<Grid RowDefinitions="Auto,*">
<VerticalStackLayout
Grid.Row="0"
BackgroundColor="DarkOrange">
<Label
Margin="30"
HorizontalOptions="Center"
HorizontalTextAlignment="Center"
SemanticProperties.HeadingLevel="Level1"
Style="{StaticResource Headline}"
Text="Sticky header panel"
VerticalOptions="Center" />
</VerticalStackLayout>
<ScrollView Grid.Row="1">
<VerticalStackLayout
Padding="30,0"
Spacing="25">
<Label
Style="{StaticResource SubHeadline}"
Text="1" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="2" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="3" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="4" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="5" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="6" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="7" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="8" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="9" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="10" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="11" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
<Label
Style="{StaticResource SubHeadline}"
Text="12" />
<Entry ReturnType="Next" BackgroundColor="WhiteSmoke" />
</VerticalStackLayout>
</ScrollView>
</Grid>
</ContentPage>