|
|
|
|
@ -1,3 +1,5 @@
|
|
|
|
|
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/widgets/buttons/defaultButton.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
|
|
|
|
import 'package:diplomaticquarterapp/widgets/text/app_texts_widget.dart';
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
@ -141,8 +143,10 @@ class _ProfileSettings extends State<ProfileSettings>
|
|
|
|
|
children: [
|
|
|
|
|
AppText('Emergency contact name'),
|
|
|
|
|
TextField(
|
|
|
|
|
style: TextStyle(color: Colors.red),
|
|
|
|
|
)
|
|
|
|
|
style: TextStyle(color: Colors.red),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
suffixIcon: Icon(Icons.edit),
|
|
|
|
|
))
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
Container(
|
|
|
|
|
@ -154,8 +158,24 @@ class _ProfileSettings extends State<ProfileSettings>
|
|
|
|
|
AppText('Emergency contact number'),
|
|
|
|
|
TextField(
|
|
|
|
|
style: TextStyle(color: Colors.red),
|
|
|
|
|
decoration: InputDecoration(
|
|
|
|
|
suffixIcon: Icon(Icons.edit),
|
|
|
|
|
),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
)),
|
|
|
|
|
Container(
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
child: Row(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Expanded(
|
|
|
|
|
child: DefaultButton(
|
|
|
|
|
TranslationBase.of(context).submit,
|
|
|
|
|
() {
|
|
|
|
|
// print(mobileNo.text);
|
|
|
|
|
},
|
|
|
|
|
)),
|
|
|
|
|
],
|
|
|
|
|
))
|
|
|
|
|
]));
|
|
|
|
|
}
|
|
|
|
|
|