🎨 merge C# model into master
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
95c2d548c0
@ -0,0 +1,22 @@
|
|||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: myFirstPipeline
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
- C#/model
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:6.0
|
||||||
|
commands:
|
||||||
|
- cd src/Banquale
|
||||||
|
#- dotnet restore Banquale.sln
|
||||||
|
#- dotnet build Banquale.sln -c Debug --no-restore /p:AndroidSdkDirectory=$ANDROID_SDK_ROOT -property:Aapt2ToolPath=$ANDROID_SDK_ROOT/build-tools/33.0.0
|
||||||
|
#- dotnet publish Banquale/Banquale.csproj -c Release --no-restore -o $CI_PROJECT_DIR/build/release -f:net6.0-android /p:AndroidSdkDirectory=/usr/lib/android-sdk
|
||||||
|
# this last line can be replaced by the following one, if you have only one project in your solution:
|
||||||
|
#- dotnet publish Banquale.sln -c Release --no-restore -o $CI_PROJECT_DIR/build/release -f:net7.0-android /p:AndroidSdkDirectory=/usr/lib/android-sdk
|
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 382 B |
@ -0,0 +1,51 @@
|
|||||||
|
<?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="Banquale.Views.HelpPage">
|
||||||
|
|
||||||
|
<VerticalStackLayout VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Quel est votre demande ?"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Quel est le sujet de votre demande ?"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="250"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 0, 0, 10"
|
||||||
|
Padding="15, 5, 15, 5">
|
||||||
|
|
||||||
|
<Editor Placeholder="Decrivez votre demande ici." />
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Envoyer"
|
||||||
|
Margin="0, 75, 0, 0"
|
||||||
|
MinimumHeightRequest="80"
|
||||||
|
WidthRequest="300"
|
||||||
|
MaximumWidthRequest="400"
|
||||||
|
Clicked="Send_Clicked"/>
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,40 @@
|
|||||||
|
<?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="Banquale.Views.MenuTransferPage">
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto"
|
||||||
|
ColumnDefinitions="auto, auto"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Faire un virement"
|
||||||
|
Grid.Column="0"
|
||||||
|
Grid.Row="0"
|
||||||
|
Margin="20"
|
||||||
|
MinimumWidthRequest="160"
|
||||||
|
MinimumHeightRequest="160"
|
||||||
|
Clicked="Transfer_Clicked"/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Demander de l'argent"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.Row="0"
|
||||||
|
Margin="20"
|
||||||
|
MinimumWidthRequest="160"
|
||||||
|
MinimumHeightRequest="160"
|
||||||
|
Clicked="Request_Clicked"/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Afficher mon RIB"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="1"
|
||||||
|
Margin="20"
|
||||||
|
MinimumHeightRequest="160"
|
||||||
|
MinimumWidthRequest="360"
|
||||||
|
Clicked="RIB_Clicked"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,53 @@
|
|||||||
|
<?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="Banquale.Views.RequestPage">
|
||||||
|
|
||||||
|
<VerticalStackLayout VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Destinataire"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="IBAN"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Montant"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Envoyer la demande"
|
||||||
|
Margin="0, 75, 0, 0"
|
||||||
|
MinimumHeightRequest="80"
|
||||||
|
WidthRequest="300"
|
||||||
|
MaximumWidthRequest="400"/>
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,125 @@
|
|||||||
|
<?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="Banquale.Views.RibPage">
|
||||||
|
|
||||||
|
<VerticalStackLayout>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto"
|
||||||
|
ColumnDefinitions="*, *">
|
||||||
|
|
||||||
|
<Label Text="Code Banque" />
|
||||||
|
|
||||||
|
<Label Text="Code agence"
|
||||||
|
Grid.Column="1" />
|
||||||
|
<Label Text="102 330"
|
||||||
|
Grid.Row="1" />
|
||||||
|
<Label Text="01 009"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, *, auto" >
|
||||||
|
|
||||||
|
<Label Text="N° de Compte" />
|
||||||
|
|
||||||
|
<Label Text="0000545090"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Label Text="Clé RIB"
|
||||||
|
Grid.Column="1" />
|
||||||
|
|
||||||
|
<Label Text="55"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="2"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="45"/>
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="3"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5"/>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, auto" >
|
||||||
|
|
||||||
|
<Label Text="RIB" />
|
||||||
|
|
||||||
|
<Label Text="FR56 9989 9900 7723 7732 7324 048"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="50" />
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, auto" >
|
||||||
|
|
||||||
|
<Label Text="RIB" />
|
||||||
|
|
||||||
|
<Label Text="FR56 9989 9900 7723 7732 7324 048"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="50" />
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Grid RowDefinitions="auto, auto, auto"
|
||||||
|
ColumnDefinitions="*, auto" >
|
||||||
|
|
||||||
|
<Label Text="RIB" />
|
||||||
|
|
||||||
|
<Label Text="FR56 9989 9900 7723 7732 7324 048"
|
||||||
|
Grid.Row="1" />
|
||||||
|
|
||||||
|
<Image Source="dotnet_bot.png"
|
||||||
|
Grid.Column="1"
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
MaximumHeightRequest="50" />
|
||||||
|
|
||||||
|
<BoxView Color="Gray"
|
||||||
|
Grid.ColumnSpan="2"
|
||||||
|
Grid.Row="2"
|
||||||
|
WidthRequest="400"
|
||||||
|
HeightRequest="1.5" />
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Titulaire du compte" />
|
||||||
|
|
||||||
|
<Label Text="M BOURAUD DESCHAMPS" />
|
||||||
|
|
||||||
|
<Button Text="Télécharger le RIB"
|
||||||
|
HeightRequest="150"
|
||||||
|
WidthRequest="300" />
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,53 @@
|
|||||||
|
<?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="Banquale.Views.TransferPage">
|
||||||
|
|
||||||
|
<VerticalStackLayout VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Destinataire"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="IBAN"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="10"
|
||||||
|
HeightRequest="40"
|
||||||
|
WidthRequest="300"
|
||||||
|
Margin="0, 5, 0, 5"
|
||||||
|
Padding="3">
|
||||||
|
|
||||||
|
<Entry Placeholder="Montant"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
WidthRequest="280"/>
|
||||||
|
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
Text="Effectuer le virement"
|
||||||
|
Margin="0, 75, 0, 0"
|
||||||
|
MinimumHeightRequest="80"
|
||||||
|
WidthRequest="300"
|
||||||
|
MaximumWidthRequest="400"/>
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</ContentPage>
|
Loading…
Reference in new issue