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
178 B
Dart
10 lines
178 B
Dart
enum CommentsOrder {
|
|
natural('Natural'),
|
|
newestFirst('Newest first'),
|
|
oldestFirst('Oldest first');
|
|
|
|
const CommentsOrder(this.description);
|
|
|
|
final String description;
|
|
}
|