diff --git a/Sources/Stim/ConfirmationPopup.xaml b/Sources/Stim/ConfirmationPopup.xaml
new file mode 100644
index 0000000..7b9c8c5
--- /dev/null
+++ b/Sources/Stim/ConfirmationPopup.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Sources/Stim/ConfirmationPopup.xaml.cs b/Sources/Stim/ConfirmationPopup.xaml.cs
new file mode 100644
index 0000000..0ea4670
--- /dev/null
+++ b/Sources/Stim/ConfirmationPopup.xaml.cs
@@ -0,0 +1,17 @@
+using CommunityToolkit.Maui.Views;
+
+namespace Stim;
+
+public partial class ConfirmationPopup : Popup
+{
+ public ConfirmationPopup(string message)
+ {
+ InitializeComponent();
+ placeholder.Text = message;
+ }
+
+ public void Yes(object sender, EventArgs e)
+ => Close(true);
+ public void No(object sender, EventArgs e)
+ => Close(false);
+}
\ No newline at end of file
diff --git a/Sources/Stim/EntryPopup.xaml b/Sources/Stim/EntryPopup.xaml
index 57f5b2c..0a88012 100644
--- a/Sources/Stim/EntryPopup.xaml
+++ b/Sources/Stim/EntryPopup.xaml
@@ -4,12 +4,11 @@
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
x:Class="Stim.EntryPopup"
CanBeDismissedByTappingOutsideOfPopup="False">
-
-
-
-
+
+
+
+
-
diff --git a/Sources/Stim/MessagePopup.xaml b/Sources/Stim/MessagePopup.xaml
index b832b69..4681669 100644
--- a/Sources/Stim/MessagePopup.xaml
+++ b/Sources/Stim/MessagePopup.xaml
@@ -5,8 +5,8 @@
x:Class="Stim.MessagePopup"
CanBeDismissedByTappingOutsideOfPopup ="False">
-
-
+
+
diff --git a/Sources/Stim/Resources/Styles/Styles.xaml b/Sources/Stim/Resources/Styles/Styles.xaml
index b40016a..e49b846 100644
--- a/Sources/Stim/Resources/Styles/Styles.xaml
+++ b/Sources/Stim/Resources/Styles/Styles.xaml
@@ -387,9 +387,30 @@
+
+
+
+
@@ -403,8 +424,13 @@
-
+
+
+
+