Created
August 7, 2017 03:32
-
-
Save Char0394/7a623e12f868560c4c55faf06c508fda to your computer and use it in GitHub Desktop.
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
| <?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="UISampleApp.Views.Logins.LoginDaniaPage" | |
| xmlns:local="clr-namespace:UISampleApp.Controls" BackgroundColor="#2f4259"> | |
| <ContentPage.Content> | |
| <ScrollView> | |
| <StackLayout Padding="40" Spacing="10"> | |
| <local:ImageEntry TextColor="White" | |
| PlaceholderColor="{StaticResource primary}" | |
| Image="user" | |
| Placeholder="Emil" | |
| HorizontalOptions="FillAndExpand"/> | |
| </StackLayout> | |
| </ScrollView> | |
| </ContentPage.Content> | |
| </ContentPage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment