You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
410 B
Dart
33 lines
410 B
Dart
enum ViewState {
|
|
busy,
|
|
idle,
|
|
error,
|
|
}
|
|
|
|
enum ScreenOrientationEnum {
|
|
portraitUp, // 1
|
|
portraitDown, // 2
|
|
landscapeRight, // 3
|
|
landscapeLeft, // 4
|
|
}
|
|
|
|
enum QTypeEnum {
|
|
appointment, // 1
|
|
lab, // 2
|
|
rad, // 3
|
|
pharmacy, // 4
|
|
}
|
|
|
|
enum ScreenTypeEnum {
|
|
waitingAreaScreen, // 1
|
|
roomLevelScreen, // 2
|
|
receptionScreen, // 3
|
|
dashboardScreen, // 4
|
|
}
|
|
|
|
enum LanguageEnum {
|
|
english,
|
|
arabic,
|
|
}
|
|
|