parent
d737ce6ecf
commit
35b51bfc52
@ -0,0 +1,10 @@
|
||||
<?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="MangaMap.Views.CustomHeader"
|
||||
BackgroundColor="DarkSalmon">
|
||||
|
||||
<Grid ColumnDefinitions="30, *, 30">
|
||||
|
||||
</Grid>
|
||||
</ContentView>
|
@ -0,0 +1,9 @@
|
||||
namespace MangaMap.Views;
|
||||
|
||||
public partial class CustomHeader : ContentView
|
||||
{
|
||||
public CustomHeader()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="MangaMap.Views.listPage"
|
||||
BackgroundColor="{StaticResource Secondary}">
|
||||
<ScrollView>
|
||||
<Grid>
|
||||
<Grid.Background>
|
||||
<SolidColorBrush Color="#1E1E1E" />
|
||||
</Grid.Background>
|
||||
<Label Text="Watching" TextColor="white "/>
|
||||
<Rectangle WidthRequest="1300" HeightRequest="550" Fill="#333333" Margin="20" RadiusX="15" />
|
||||
</Grid>
|
||||
</ScrollView>
|
||||
|
||||
</ContentPage>
|
@ -0,0 +1,9 @@
|
||||
namespace MangaMap.Views;
|
||||
|
||||
public partial class listPage : ContentPage
|
||||
{
|
||||
public listPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue