diff --git a/src/MobileUI/AppShell.xaml b/src/MobileUI/AppShell.xaml
index d0d585ff1..a65eac277 100644
--- a/src/MobileUI/AppShell.xaml
+++ b/src/MobileUI/AppShell.xaml
@@ -159,7 +159,7 @@
HorizontalOptions="Start"
VerticalOptions="Center"
FontSize="16"
- Text="Settings" />
+ Text="My Settings" />
diff --git a/src/MobileUI/Pages/SettingsPage.xaml b/src/MobileUI/Pages/SettingsPage.xaml
index c02a0b5a8..55a9306b7 100644
--- a/src/MobileUI/Pages/SettingsPage.xaml
+++ b/src/MobileUI/Pages/SettingsPage.xaml
@@ -9,17 +9,17 @@
BackgroundColor="{StaticResource Background}">
-
-
+
+
-
-
-
+
+
-
+
-
+
+
diff --git a/src/MobileUI/PopupPages/AboutSswPage.xaml b/src/MobileUI/PopupPages/AboutSswPage.xaml
index ce279ed95..a81c7631d 100644
--- a/src/MobileUI/PopupPages/AboutSswPage.xaml
+++ b/src/MobileUI/PopupPages/AboutSswPage.xaml
@@ -26,26 +26,44 @@
StrokeThickness="1"
StrokeShape="RoundRectangle 10"
BackgroundColor="{StaticResource ProfileBackgroundColour}">
-
+
+ FontSize="24"
+ Text="About"/>
+
+
+
+
+
+
diff --git a/src/MobileUI/PopupPages/AboutSswPage.xaml.cs b/src/MobileUI/PopupPages/AboutSswPage.xaml.cs
index 31f792e6b..a4bd12cb6 100644
--- a/src/MobileUI/PopupPages/AboutSswPage.xaml.cs
+++ b/src/MobileUI/PopupPages/AboutSswPage.xaml.cs
@@ -13,6 +13,12 @@ public AboutSswPage(Color parentPageStatusBarColor = null)
_parentPageStatusBarColor = parentPageStatusBarColor ?? Colors.Black;
InitializeComponent();
}
+
+ protected override void OnAppearing()
+ {
+ base.OnAppearing();
+ VersionLabel.Text = $"Version {AppInfo.VersionString}";
+ }
private async void Handle_CloseTapped(object sender, EventArgs args)
{
diff --git a/src/MobileUI/ViewModels/SettingsViewModel.cs b/src/MobileUI/ViewModels/SettingsViewModel.cs
index cd70a1872..85241d6f7 100644
--- a/src/MobileUI/ViewModels/SettingsViewModel.cs
+++ b/src/MobileUI/ViewModels/SettingsViewModel.cs
@@ -61,7 +61,7 @@ private async Task DeleteClicked()
// Remove all remaining code in this method after the fix is available
- var sure = await App.Current.MainPage.DisplayAlert("Delete Profile", "If you no longer want an SSW or SSW Rewards account, you can submit a request to SSW to delete your profile and all associated data. Are you sure you want to delete your profile and all associated data?", "Yes", "No");
+ var sure = await App.Current.MainPage.DisplayAlert("Delete Profile", "If you no longer want an SSW or SSW Rewards account, you can submit a request to SSW to delete your profile and all associated data. Are you sure you want to delete your profile and all associated data?", "Yes", "Cancel");
if (sure)
{