mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-28 14:25:55 +08:00
13
lib/models/common/member/user_info_type.dart
Normal file
13
lib/models/common/member/user_info_type.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
import 'package:flutter/material.dart' show Alignment;
|
||||
|
||||
enum UserInfoType {
|
||||
fan('粉丝', .centerLeft),
|
||||
follow('关注', .center),
|
||||
like('获赞', .centerRight),
|
||||
;
|
||||
|
||||
final String title;
|
||||
final Alignment alignment;
|
||||
|
||||
const UserInfoType(this.title, this.alignment);
|
||||
}
|
||||
Reference in New Issue
Block a user