22 строки
1.0 KiB
XML
22 строки
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Xamarin.Forms.Controls.Issue1653">
|
|
<StackLayout Spacing="0">
|
|
<StackLayout x:Name="accountDetailsStack"/>
|
|
<StackLayout x:Name="carrierHeaderStack">
|
|
<Label Text="HEADER" Font="40" />
|
|
</StackLayout>
|
|
<StackLayout Padding="22,0,22,22">
|
|
<Label x:Name="productNameLabel" Text="TESTING 345" XAlign="Center" YAlign="Center" TextColor="#808080"></Label>
|
|
<StackLayout IsClippedToBounds="true">
|
|
<ScrollView HeightRequest="980" BackgroundColor="Aqua" IsClippedToBounds="true">
|
|
<StackLayout x:Name="addonGroupStack" Spacing="1" ></StackLayout>
|
|
</ScrollView>
|
|
</StackLayout>
|
|
<Button x:Name="activateButton" Text="ACTIVATE NOW" TextColor="White" BackgroundColor="#00A0FF">
|
|
</Button>
|
|
<ActivityIndicator x:Name="checkoutRunningIndicator" HeightRequest="20"/>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</ContentPage> |