Skip to content
Permalink
f84c178084
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
37 lines (36 sloc) 2.02 KB
<?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="InfoBlog.Views.WelcomePage">
<ContentPage.Resources>
<!-- Implicit styles -->
<Style TargetType="{x:Type Editor}">
<Setter Property="BackgroundColor"
Value="{StaticResource AppBackgroundColor}"/>
</Style>
<Style TargetType="Button"
ApplyToDerivedTypes="True"
CanCascade="True">
<Setter Property="FontSize" Value="17" />
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="BackgroundColor" Value="#1976D2" />
<Setter Property="TextColor" Value="White" />
<Setter Property="CornerRadius" Value="5" />
<Setter Property="Padding" Value="10, 0, 10, 0"/>
</Style>
</ContentPage.Resources>
<ContentPage.ToolbarItems >
<ToolbarItem Text="Login" Clicked="LoginBtn"/>
<ToolbarItem Text="Register" Clicked="RegisterBtn"/>
</ContentPage.ToolbarItems>
<ContentPage.Content >
<StackLayout BackgroundColor="#211F55">
<Image Source="heart.jpg"/>
<Label Text="Welcome to InfoBlog..." TextColor="White" FontAttributes="Bold" FontSize="Title" HorizontalTextAlignment="Center"/>
<Label Text="To View Exciting Content, You Have to Login or register if you're new" TextColor="Yellow" HorizontalTextAlignment="Center" FontAttributes="Italic"/>
<Frame BackgroundColor="#F8F8F5">
<Label Text="Get the best and latest Gists in Politics, Sports, Relationships, Marriages, Entertainment, Animals, Life Issues, Daily Events
Health, Career and so on.
Login or Register to explore our scintilating contents" VerticalTextAlignment="Center" HorizontalTextAlignment="Center" FontSize="16" TextColor="Black"/>
</Frame>
</StackLayout>
</ContentPage.Content>
</ContentPage>