* still in draft * feat(reading_assistance): whole message activity oriented * chore: fix .env file path * feat: animate selected toolbar into middle of screen * chore: initial work for message bubble size animation * refactor(reading_assistance): hooking up the choice interactions and polishing UI * chore: animate in content and buttons * formatting * position reading content relative to selected token * working on limiting choices * chore: fix positioning of toolbar animation * chore: simplify positioning logic * chore: animate in button height * getting there * rough draft with restricted activity number is complete --------- Co-authored-by: ggurdin <ggurdin@gmail.com>
6 lines
206 B
Dart
6 lines
206 B
Dart
enum ActivityDisplayInstructionsEnum { highlight, hide, nothing }
|
|
|
|
extension ActivityDisplayInstructionsEnumExt
|
|
on ActivityDisplayInstructionsEnum {
|
|
String get string => toString().split('.').last;
|
|
}
|