This file contains 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
fdsafsd |
This file contains 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains 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
<?xml version="1.0" encoding="utf-8" ?> | |
<ContentPage x:Class="BeerLayout.BeerScreen" | |
xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
BackgroundColor="{StaticResource bgColor}" | |
Padding="{StaticResource gridPadding}"> | |
<ContentPage.Resources> | |
<ResourceDictionary> | |
<Color x:Key="accentColor">#ffcc00</Color> |
This file contains 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
<?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="LoginPage.LoginForm" BackgroundImage="BackgroundImage"> | |
<Grid VerticalOptions="FillAndExpand"> | |
<Grid.RowDefinitions> |
This file contains 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
<?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="LoginPage.MitchPage" | |
BackgroundImage="BackgroundImage"> | |
<StackLayout VerticalOptions="EndAndExpand" Padding="30"> | |
<Entry StyleId="Email" Text="{Binding Path=Email}" Placeholder="Email" BackgroundColor="#00BFFF" TextColor="Black" /> | |
<Entry StyleId="Password" Text="{Binding Path=Password}" Placeholder="Password" IsPassword="True" BackgroundColor="#00BFFF" TextColor="Black"/> | |
<Grid HorizontalOptions="Center" Padding="0, 10, 0, 10"> |