Merge branch 'app_translation' into 'development'

SMS Popup design fix

See merge request Cloud_Solution/doctor_app_flutter!634
merge-requests/635/merge
Mohammad Aljammal 5 years ago
commit a82775fc61

@ -69,15 +69,15 @@ class SMSOTP {
} }
return Container( return Container(
color: Colors.white, color: Colors.white,
height: SizeConfig.realScreenHeight * 0.5, height: MediaQuery.of(context).size.height * 0.50,
width: SizeConfig.realScreenWidth * 0.8, width: MediaQuery.of(context).size.width * 0.84,
child: Center( child: Center(
child: SingleChildScrollView( child: SingleChildScrollView(
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
Padding( Padding(
padding: EdgeInsets.all(10), padding: EdgeInsets.all(12),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
@ -249,12 +249,15 @@ class SMSOTP {
)), )),
), ),
), ),
Column( Padding(
padding: const EdgeInsets.all(12.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
AppText( AppText(
TranslationBase.of(context).validationMessage + ' ', TranslationBase.of(context).validationMessage +
' ',
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
fontSize: 14, fontSize: 14,
), ),
@ -265,7 +268,8 @@ class SMSOTP {
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
fontSize: 14, fontSize: 14,
) )
]) ]),
)
], ],
))), ))),
); );

Loading…
Cancel
Save