Contact and settings updates.

This commit is contained in:
Burak Kaan Köse
2026-03-06 12:31:37 +01:00
parent 51f64466c2
commit e1be644631
14 changed files with 119 additions and 54 deletions
@@ -49,15 +49,12 @@ public sealed partial class AccountDetailsPage : AccountDetailsPageAbstract
{
base.OnNavigatedTo(e);
if (e.NavigationMode == NavigationMode.New)
var targetTabIndex = ViewModel.SelectedTabIndex;
if (targetTabIndex < 0 || targetTabIndex >= TabSelector.Items.Count)
{
var targetTabIndex = ViewModel.SelectedTabIndex;
if (targetTabIndex < 0 || targetTabIndex >= TabSelector.Items.Count)
{
targetTabIndex = 1;
}
TabSelector.SelectedItem = TabSelector.Items[targetTabIndex];
targetTabIndex = 1;
}
TabSelector.SelectedItem = TabSelector.Items[targetTabIndex];
}
}