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.
40 lines
530 B
Dart
40 lines
530 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
|
|
general, // 4
|
|
}
|
|
|
|
enum ScreenTypeEnum {
|
|
waitingAreaScreen, // 1
|
|
roomLevelScreen, // 2
|
|
receptionScreen, // 3
|
|
dashboardScreen, // 4
|
|
kioskScreen, // 5
|
|
}
|
|
|
|
enum LanguageEnum {
|
|
english,
|
|
arabic,
|
|
}
|
|
|
|
enum KioskScreenStateEnums {
|
|
languageState,
|
|
queueSelectionState,
|
|
ticketNoState,
|
|
busyState,
|
|
}
|