Skip to content

Instantly share code, notes, and snippets.

@DavidCulpepper
Created September 17, 2014 18:32
Show Gist options
  • Save DavidCulpepper/8f0d581d6557e4f4107f to your computer and use it in GitHub Desktop.
Save DavidCulpepper/8f0d581d6557e4f4107f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:vm="clr-namespace:...;assembly=..."
xmlns:view="clr-namespace:...;assembly=..."
x:Class="..."
Title="Configure Group">
<ScrollView>
<StackLayout Padding="20">
<Label Text="Person 1" Font="Large"/>
<view:EditPersonView/>
<Label Text="Person 2" Font="Large"/>
<view:EditPersonView/>
<Label Text="Person 3" Font="Large"/>
<view:EditPersonView/>
</StackLayout>
</ScrollView>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment