Affiliation bateaux + bar de recherche pour toutes les pages + tests flex layout
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
2bdde35a30
commit
f96143711e
@ -0,0 +1,11 @@
|
|||||||
|
<?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="Ohara.ModalFDD"
|
||||||
|
Title="ModalFDD"
|
||||||
|
|
||||||
|
BackgroundColor="#e2edf1">
|
||||||
|
<StackLayout>
|
||||||
|
<Button Text="Annuler" Clicked="Button_Clicked"/>
|
||||||
|
</StackLayout>
|
||||||
|
</ContentPage>
|
@ -0,0 +1,14 @@
|
|||||||
|
namespace Ohara;
|
||||||
|
|
||||||
|
public partial class ModalFDD : ContentPage
|
||||||
|
{
|
||||||
|
public ModalFDD()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void Button_Clicked(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
await Navigation.PopModalAsync();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue