Merge branch 'development' into soap-objective-feature-re-design

merge-requests/447/head
mosazaid 5 years ago
commit 14b76c9302

@ -35,7 +35,8 @@ class AddSickLeavScreen extends StatelessWidget {
child: Column(children: [ child: Column(children: [
PatientProfileHeaderNewDesign( PatientProfileHeaderNewDesign(
patient, routeArgs['patientType'], routeArgs['arrivalType']), patient, routeArgs['patientType'], routeArgs['arrivalType']),
Column( patient.patientStatusType == 43
? Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Padding( Padding(
@ -86,7 +87,8 @@ class AddSickLeavScreen extends StatelessWidget {
)), )),
Padding( Padding(
child: AppText( child: AppText(
TranslationBase.of(context).noSickLeaveApplied, TranslationBase.of(context)
.noSickLeaveApplied,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
fontFamily: 'Poppins', fontFamily: 'Poppins',
fontSize: 16, fontSize: 16,
@ -97,7 +99,8 @@ class AddSickLeavScreen extends StatelessWidget {
], ],
)), )),
], ],
), )
: SizedBox(),
model.getAllSIckLeave.length > 0 model.getAllSIckLeave.length > 0
? Column( ? Column(
children: model.getAllSIckLeave children: model.getAllSIckLeave

Loading…
Cancel
Save