diff --git a/lib/pages/settings/profile_setting.dart b/lib/pages/settings/profile_setting.dart index 31941437..3a8f01dc 100644 --- a/lib/pages/settings/profile_setting.dart +++ b/lib/pages/settings/profile_setting.dart @@ -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 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 AppText('Emergency contact number'), TextField( style: TextStyle(color: Colors.red), + decoration: InputDecoration( + suffixIcon: Icon(Icons.edit), + ), ) ], + )), + Container( + padding: EdgeInsets.all(10), + child: Row( + children: [ + Expanded( + child: DefaultButton( + TranslationBase.of(context).submit, + () { +// print(mobileNo.text); + }, + )), + ], )) ])); }