parent
e0be2a33a2
commit
418fced31f
@ -1,8 +1,8 @@
|
|||||||
namespace mastermind.Pages;
|
namespace mastermind.Pages;
|
||||||
|
|
||||||
public partial class connexionPage : ContentPage
|
public partial class ConnexionPage : ContentPage
|
||||||
{
|
{
|
||||||
public connexionPage()
|
public ConnexionPage()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
<?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="mastermind.Views.UsernameEntryView">
|
||||||
|
|
||||||
|
<Grid
|
||||||
|
Margin="0, 50"
|
||||||
|
ColumnDefinitions="auto, *, 8*, *"
|
||||||
|
RowDefinitions="auto">
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Joueur X"
|
||||||
|
FontSize="Large"
|
||||||
|
Margin="50, 0, 0, 0"
|
||||||
|
VerticalOptions="Center"
|
||||||
|
HorizontalOptions="Center"/>
|
||||||
|
|
||||||
|
<Entry
|
||||||
|
Grid.Column="2"
|
||||||
|
FontSize="Medium"
|
||||||
|
Margin="50, 0"/>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
</ContentView>
|
@ -0,0 +1,9 @@
|
|||||||
|
namespace mastermind.Views;
|
||||||
|
|
||||||
|
public partial class UsernameEntryView : ContentView
|
||||||
|
{
|
||||||
|
public UsernameEntryView()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue