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.
32 lines
1.0 KiB
Dart
32 lines
1.0 KiB
Dart
import 'package:diplomaticquarterapp/config/config.dart';
|
|
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
|
|
|
class ArrivedButtons {
|
|
var buttons = [
|
|
{
|
|
"title": TranslationBase.of(AppGlobal.context).medicines,
|
|
"subtitle": TranslationBase.of(AppGlobal.context).medicinesSubtitle,
|
|
"icon": "medicine_prescription.svg",
|
|
"caller": "prescriptions",
|
|
},
|
|
{
|
|
"title": TranslationBase.of(AppGlobal.context).radiology,
|
|
"subtitle": TranslationBase.of(AppGlobal.context).radiologySubtitle,
|
|
"icon": 'radiology.svg',
|
|
"caller": "radiology",
|
|
},
|
|
{
|
|
"title": TranslationBase.of(AppGlobal.context).lab,
|
|
"subtitle": TranslationBase.of(AppGlobal.context).labSubtitle,
|
|
"icon": 'lab_result.svg',
|
|
"caller": "labResult",
|
|
},
|
|
{
|
|
"title": TranslationBase.of(AppGlobal.context).askDoctor,
|
|
"subtitle": TranslationBase.of(AppGlobal.context).service,
|
|
"icon": 'ask_doctor.svg',
|
|
"caller": "askDoc",
|
|
},
|
|
];
|
|
}
|