You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.8 KiB
40 lines
1.8 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="PageLayout.ByStackLayout">
|
|
<VerticalStackLayout Padding="40" Spacing="10">
|
|
|
|
<HorizontalStackLayout Spacing="10">
|
|
<Label Text="Bill" WidthRequest="100" VerticalOptions="Center" />
|
|
<Entry x:Name="billInput" Placeholder="Enter Amount" Keyboard="Numeric" />
|
|
</HorizontalStackLayout>
|
|
|
|
<HorizontalStackLayout Margin="0,20,0,0" Spacing="10">
|
|
<Label Text="Tip" WidthRequest="100" />
|
|
<Label x:Name="tipOutput" Text="0.00" />
|
|
</HorizontalStackLayout>
|
|
|
|
<HorizontalStackLayout Spacing="10">
|
|
<Label Text="Total" WidthRequest="100" />
|
|
<Label x:Name="totalOutput" Text="0.00" />
|
|
</HorizontalStackLayout>
|
|
|
|
<HorizontalStackLayout VerticalOptions="End" Spacing="10">
|
|
<Label Text="Tip Percentage" WidthRequest="100" />
|
|
<Label x:Name="tipPercent" Text="15%" />
|
|
</HorizontalStackLayout>
|
|
|
|
<Slider x:Name="tipPercentSlider" Minimum="0" Maximum="100" Value="15" />
|
|
|
|
<HorizontalStackLayout Margin="0,20,0,0" Spacing="10">
|
|
<Button Text="15%" WidthRequest="150" HorizontalOptions="Center" />
|
|
<Button Text="20%" WidthRequest="150" HorizontalOptions="Center" />
|
|
</HorizontalStackLayout>
|
|
|
|
<HorizontalStackLayout Margin="0,20,0,0" Spacing="10">
|
|
<Button x:Name="roundDown" WidthRequest="150" HorizontalOptions="Center" Text="Round Down" />
|
|
<Button x:Name="roundUp" WidthRequest="150" HorizontalOptions="Center" Text="Round Up" />
|
|
</HorizontalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
</ContentView>
|
|
|