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
<Style x:Key="labelHeader" TargetType="Label"> | |
<Setter Property="FontAttributes" Value="Bold" /> | |
<Setter Property="Padding" Value="10" /> | |
<Setter Property="TextColor" Value="Gray" /> | |
</Style> |
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
<Application xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="MyApp.App"> | |
<Application.Resources> | |
<ResourceDictionary> | |
<ResourceDictionary.MergedDictionaries> | |
<local:Colors /> | |
<local:Converters /> | |
<local:Templates /> | |
<local:ExplicitStyles /> |
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 Orientation="Horizontal"> | |
<Button Text="Login"/> | |
<Button Text="Register"/> | |
</StackLayout> |
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 Orientation="Horizontal"> | |
<Button Text="Login"/> | |
<Button Text="Register"/> | |
</StackLayout> |
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
<Image Source="ImageEnabled"/> |
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
<Image Source="ImageEnabled"> | |
</Image> |
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
<Image Source="ImageEnabled"> | |
<Image.Triggers> | |
<Trigger TargetType="Image" | |
Property="IsEnabled" | |
Value="False"> | |
<Setter Property="Source" Value="ImageDisabled" /> | |
</Trigger> | |
</Image.Triggers> | |
<Image.Effects> |
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
<Image Source="ImageEnabled"> | |
<Image.Effects> | |
<effect:TintImageEffect/> | |
</Image.Effects> | |
<Image.GestureRecognizers> | |
<TapGestureRecognizer Command="{Binding TapImageCommand}"/> | |
</Image.GestureRecognizers> | |
<Image.Triggers> | |
<Trigger TargetType="Image" | |
Property="IsEnabled" |
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
<Label Text="Login"/> |
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
<Label Text="Login" | |
HorizontalOptions="Fill"/> |