App/Payesh.App/Views/Popups/Originals/SuccessPopUp.xaml

30 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<ContentView
x:Class="Payesh.App.Views.Popups.Originals.SuccessPopUp"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:models="clr-namespace:Payesh.App.Models;assembly=Payesh.App"
Margin="25,0"
HorizontalOptions="Center"
VerticalOptions="Center">
<ContentView.Content>
<Frame BackgroundColor="#444" CornerRadius="10">
<StackLayout Orientation="Horizontal">
<Label
x:Name="messageLabel"
HorizontalOptions="Center"
HorizontalTextAlignment="Center"
Text="عملیات با موفقیت انجام شد"
TextColor="White"
VerticalOptions="Center" />
<Label
FontFamily="{StaticResource MaterialFontFamily}"
FontSize="28"
HorizontalOptions="Center"
Text="{x:Static models:MaterialIconFont.CheckCircle}"
TextColor="ForestGreen"
VerticalOptions="Center" />
</StackLayout>
</Frame>
</ContentView.Content>
</ContentView>