1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 11:13:49 +00:00

Removed grouping from Settings to fix a crash on iOS 15.4 (#1845)

This commit is contained in:
Federico Maccaroni
2022-03-15 11:19:34 -03:00
committed by GitHub
parent 4d4e246a47
commit 7c83d7b37b
6 changed files with 57 additions and 36 deletions

View File

@@ -0,0 +1,12 @@
namespace Bit.App.Pages
{
public class SettingsPageHeaderListItem : ISettingsPageListItem
{
public SettingsPageHeaderListItem(string title)
{
Title = title;
}
public string Title { get; }
}
}