Remove the Compact View

I need to merge it into the StandardView. The more I think about it, the
more this view doesn't make sense. Specially since I need to add the
same extra configuration options in both views.
This commit is contained in:
Vishesh Handa
2020-03-11 13:19:50 +01:00
parent 627427a881
commit d2b6b0eb08
4 changed files with 0 additions and 102 deletions

View File

@ -261,7 +261,6 @@ class SettingsEditorType {
class SettingsFolderViewType {
static const Standard = SettingsFolderViewType("Standard", "Standard");
static const Journal = SettingsFolderViewType("Journal", "Journal");
static const Compact = SettingsFolderViewType("Compact", "Compact");
static const Default = Standard;
final String _str;
@ -279,7 +278,6 @@ class SettingsFolderViewType {
static const options = <SettingsFolderViewType>[
Standard,
Journal,
Compact,
];
static SettingsFolderViewType fromInternalString(String str) {