mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-06 18:24:42 +08:00

* bump version. * tap anywhere to collapse. * bump version. * add feedback. * refactor preference. * renaming. * bump version. * nit. * cleanup. * bump version. * add feedback. * nit. * nit. * fix android icon. * update description.
10 lines
180 B
Dart
10 lines
180 B
Dart
mixin SettingsDisplayable {
|
|
String get title;
|
|
|
|
String get subtitle => '';
|
|
|
|
/// Whether or not this should be displayed
|
|
/// in settings.
|
|
bool get isDisplayable => true;
|
|
}
|