16 lines
619 B
XML
16 lines
619 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="TechTitans.Views.Components.BackHomeButton">
|
|
<VerticalStackLayout>
|
|
<Button
|
|
x:Name="HomeBtn"
|
|
Text="Go Home"
|
|
Clicked="OnBackClick"
|
|
HorizontalOptions="Start"
|
|
Margin="15,0,0,0"
|
|
/>
|
|
<!--xaml e retardat ca se ia left,top,right,bottom la margin si restu in loc sa inceapa de la top ca in css-->
|
|
</VerticalStackLayout>
|
|
</ContentView>
|