-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathResultsPage.xaml
26 lines (22 loc) · 1.38 KB
/
ResultsPage.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
<?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="Anyline.Examples.MAUI.ResultsPage"
Title="Scan Results"
BackgroundColor="#1A1A1A">
<VerticalStackLayout x:Name="slContent" VerticalOptions="FillAndExpand" Padding="5" >
<Label Text="Results" FontSize="15" TextColor="#32ADFF" FontAttributes="Bold" />
<ContentView x:Name="cvContent">
<ActivityIndicator x:Name="loader" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" IsEnabled="True" IsRunning="True" Margin="20" />
</ContentView>
<BoxView HeightRequest="1" BackgroundColor="#30FFFFFF" />
<Grid Padding="0,10" ColumnSpacing="15">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Button x:Name="btHome" Text="Home" BackgroundColor="#32ADFF" TextColor="White" HorizontalOptions="FillAndExpand" />
<Button x:Name="btScanAgain" Text="Scan again" BackgroundColor="#32ADFF" TextColor="White" Grid.Column="1" HorizontalOptions="FillAndExpand" />
</Grid>
</VerticalStackLayout>
</ContentPage>