mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 06:37:14 -04:00
chore: add grid setting
This commit is contained in:
parent
6ac2617113
commit
147e948b35
1 changed files with 35 additions and 0 deletions
|
@ -0,0 +1,35 @@
|
|||
enum GridSetting {
|
||||
filter,
|
||||
sortBy,
|
||||
properties,
|
||||
}
|
||||
|
||||
extension _GridSettingExtension on GridSetting {
|
||||
String iconName() {
|
||||
switch (this) {
|
||||
case GridSetting.filter:
|
||||
// TODO: Handle this case.
|
||||
break;
|
||||
case GridSetting.sortBy:
|
||||
// TODO: Handle this case.
|
||||
break;
|
||||
case GridSetting.properties:
|
||||
// TODO: Handle this case.
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
String title() {
|
||||
switch (this) {
|
||||
case GridSetting.filter:
|
||||
// TODO: Handle this case.
|
||||
break;
|
||||
case GridSetting.sortBy:
|
||||
// TODO: Handle this case.
|
||||
break;
|
||||
case GridSetting.properties:
|
||||
// TODO: Handle this case.
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue