15 lines
635 B
Plaintext
15 lines
635 B
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
x:Class="MobileApp1.Views.CompanyHeaderView">
|
||
|
<ContentView.Content>
|
||
|
<!--<Label
|
||
|
Text="XYZ Corporation"
|
||
|
FontAttributes="Bold"
|
||
|
FontSize="Large"
|
||
|
HorizontalOptions="Center"
|
||
|
Padding="0, 40, 0, 40" />-->
|
||
|
<Image Source="company_logo.png" WidthRequest="{OnPlatform iOS=240, Android=240}" HorizontalOptions="Center" Margin="0, 20, 0, 40" />
|
||
|
|
||
|
</ContentView.Content>
|
||
|
</ContentView>
|