Skip to content

Instantly share code, notes, and snippets.

@bbenetskyy
Created March 12, 2023 14:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbenetskyy/333e24d5e0f67fd2d36a0f21394dc378 to your computer and use it in GitHub Desktop.
Save bbenetskyy/333e24d5e0f67fd2d36a0f21394dc378 to your computer and use it in GitHub Desktop.
<!--Header Section-->
<Grid ColumnDefinitions="auto,*,auto">
<Image Source="profile_image.png"
HeightRequest="60"
WidthRequest="60"
Aspect="AspectFill">
<Image.Clip>
<EllipseGeometry Center="30,30" RadiusX="30" RadiusY="30"/>
</Image.Clip>
</Image>
<Label Text="Welcome back!"
Grid.Column="1"
TextColor="#4A4A4A"
FontFamily="OpenSansSemibold"
FontSize="Header"
HorizontalOptions="Center"
VerticalOptions="Center"/>
<Grid Grid.Column="2">
<Image Source="bell.png"
HeightRequest="30"
WidthRequest="30"/>
<Ellipse HorizontalOptions="End"
VerticalOptions="Start"
Margin="0,15,2,0"
Fill="#3E0789"
HeightRequest="12"
WidthRequest="12"
/>
</Grid>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment