summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue1653.xaml
blob: 2d937fc478fdfe3917efa84989841b55876853d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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>