-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainPage2.xaml
24 lines (23 loc) · 1.1 KB
/
MainPage2.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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MicaBackdropMAUI.MainPage2"
Shell.PresentationMode="ModalAnimated"
BackgroundColor="Transparent">
<StackLayout BackgroundColor="Transparent">
<ScrollView Background="Transparent">
<StackLayout Padding="0" BackgroundColor="Transparent">
<Frame Style="{StaticResource CardStyle}">
<StackLayout Orientation="Horizontal" Spacing="10">
<Label Text="Show Navbar" VerticalOptions="Center" />
<Switch x:Name="menu_switch" Toggled="Switch_Toggled" VerticalOptions="Center" />
</StackLayout>
</Frame>
<Frame Style="{StaticResource CardStyle}">
<Label Text="Card 2 Content" />
</Frame>
<!--Add more frames as needed-->
</StackLayout>
</ScrollView>
</StackLayout>
</ContentPage>