Skip to content

Instantly share code, notes, and snippets.

View kphillpotts's full-sized avatar

Kym Phillpotts kphillpotts

View GitHub Profile
@kphillpotts
kphillpotts / Build-XF3-Links.md
Last active May 17, 2018 01:12
//Build/ and Xamarin.Forms 3.0 Announcements and Links
@kphillpotts
kphillpotts / Something.xaml
Created September 26, 2017 23:33
Code Gists for blog.kymphillpotts.com
fdsafsd
@kphillpotts
kphillpotts / 0_reuse_code.js
Created September 26, 2017 05:32
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@kphillpotts
kphillpotts / BeerLayout.xaml
Created August 27, 2015 23:58
Fun layout with Grids
<?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>
@kphillpotts
kphillpotts / Login With Grid
Created July 8, 2015 10:22
Login Page with Grid
<?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>
@kphillpotts
kphillpotts / Login with StackLayout
Created July 8, 2015 10:16
Login Page With StackLayout
<?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">