Created
May 28, 2016 07:04
-
-
Save pragmaticlogic/5bf2f7b846fd54942ce747402c3441c0 to your computer and use it in GitHub Desktop.
MainPage.xaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<StackLayout VerticalOptions="End"> | |
<StackLayout IsVisible="{Binding NoConnection}" x:Name="ButtonStackLayout" Orientation="Horizontal" Spacing="10" Padding="10,10,10,10" BackgroundColor="#E3E3E3"> | |
<StackLayout HorizontalOptions="StartAndExpand"> | |
<Label x:Name="ButtonLabel" BackgroundColor="#E3E3E3" Text="Retry" TextColor="Black" VerticalOptions="Center" /> | |
</StackLayout> | |
<StackLayout HorizontalOptions="EndAndExpand"> | |
<Image x:Name="ButtonImage" BackgroundColor="#E3E3E3" WidthRequest="24" Source="{StaticResource RefreshImage}" VerticalOptions="Center" /> | |
</StackLayout> | |
</StackLayout> | |
</StackLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment