Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?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="UEngage.Profile"
BackgroundColor="#94958B">
<ContentPage.Content>
<Grid>
<ScrollView>
<StackLayout>
<Image Source="Me.jpg" Aspect="AspectFill" HeightRequest="430" x:Name="profilepic"/>
<Frame HasShadow="False" BackgroundColor="#94958B" CornerRadius="40" Margin="0,-50,0,0" VerticalOptions="FillAndExpand">
<StackLayout>
<Label x:Name="txtUsername1" FontSize="Large" HorizontalOptions="End" TextColor="#464655"/>
<Label x:Name="txtusername2" FontSize="Medium" TextColor="#464655" />
<Label x:Name="txtpostalcode" FontSize="Medium" TextColor="#464655" />
<Label x:Name="txtReportcount" FontSize="Medium" Grid.Row="2" TextColor="#464655" />
<Button CornerRadius="8" BackgroundColor="#560A86"
TextColor="White" FontAttributes="Bold" x:Name="btnChangeprofileimage" Clicked="btnChangeprofileimage_Clicked" Text="Update Profile image" VerticalOptions="End" ></Button>
<Button CornerRadius="8" BackgroundColor="#560A86"
TextColor="White" FontAttributes="Bold" x:Name="btnlogout" Clicked="btnlogout_Clicked" Text="Logout" VerticalOptions="End" ></Button>
</StackLayout>
</Frame>
</StackLayout>
</ScrollView>
<StackLayout IsVisible="False" x:Name="busyIndi" BackgroundColor="Black" Opacity="0.7" Orientation="Vertical">
<StackLayout Orientation="Vertical" HorizontalOptions="Center" VerticalOptions="CenterAndExpand">
<ActivityIndicator Color="#781241" IsRunning="true" />
<Label x:Name="progressname" Text="Loading..." TextColor="Accent" VerticalOptions="Center" />
</StackLayout>
</StackLayout>
</Grid>
</ContentPage.Content>
</ContentPage>