mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-11 12:37:46 +08:00
@@ -1,10 +1,11 @@
|
||||
enum ReplySortType {
|
||||
time('最新评论', '最新'),
|
||||
hot('最热评论', '最热'),
|
||||
time('最新评论', '最新', text: '按时间'),
|
||||
hot('最热评论', '最热', text: '按热度'),
|
||||
select('精选评论', '精选'),
|
||||
;
|
||||
|
||||
final String title;
|
||||
final String label;
|
||||
const ReplySortType(this.title, this.label);
|
||||
final String? text;
|
||||
const ReplySortType(this.title, this.label, {this.text});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user