Skip to content

Instantly share code, notes, and snippets.

@adamped
Created April 10, 2016 07:02
Show Gist options
  • Save adamped/11a30e644720711aaa93da20d63a56ef to your computer and use it in GitHub Desktop.
Save adamped/11a30e644720711aaa93da20d63a56ef to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<Grid xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Tesla.Control.StatusBarLabel" VerticalOptions="FillAndExpand"
RowSpacing="0" ColumnSpacing="0">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label x:Name="MainLabel" Grid.Row="0" VerticalTextAlignment="Center" HorizontalTextAlignment="Center" VerticalOptions="FillAndExpand" />
<Label x:Name="StatusBar" Grid.Row="1" HeightRequest="5" IsVisible="False" />
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment