mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-09-13 06:33:00 +08:00
Add experimental card view
This notes are displayed as cards. This is meant to emulate a more google keep style.
This commit is contained in:
@ -271,6 +271,7 @@ class SettingsEditorType {
|
||||
class SettingsFolderViewType {
|
||||
static const Standard = SettingsFolderViewType("Standard", "Standard");
|
||||
static const Journal = SettingsFolderViewType("Journal", "Journal");
|
||||
static const Card = SettingsFolderViewType("Card", "Card");
|
||||
static const Default = Standard;
|
||||
|
||||
final String _str;
|
||||
@ -288,6 +289,7 @@ class SettingsFolderViewType {
|
||||
static const options = <SettingsFolderViewType>[
|
||||
Standard,
|
||||
Journal,
|
||||
Card,
|
||||
];
|
||||
|
||||
static SettingsFolderViewType fromInternalString(String str) {
|
||||
|
Reference in New Issue
Block a user