forked from ElixorTeam/Palleto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScanPage.xaml
24 lines (24 loc) · 1.06 KB
/
ScanPage.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"
xmlns:scanner="clr-namespace:BarcodeScanning;assembly=BarcodeScanning.Native.Maui"
x:Class="Pl.Tablet.Client.ScanPage"
Unloaded="ContentPage_Unloaded"
>
<AbsoluteLayout>
<scanner:CameraView AbsoluteLayout.LayoutFlags="All"
AbsoluteLayout.LayoutBounds="0,0,1,1"
OnDetectionFinished="CameraView_OnDetectionFinished"
x:Name="Barcode"/>
<Button Text="←"
AbsoluteLayout.LayoutBounds="0.01, 0.01, 70, 70"
AbsoluteLayout.LayoutFlags="PositionProportional"
Clicked="OnBackButtonClicked"
BackgroundColor="White"
TextColor="Black"
CornerRadius="35"
FontSize="40"
Padding="0,0,0,20"
/>
</AbsoluteLayout>
</ContentPage>