Contact us
This commit is contained in:
parent
4b42c3f658
commit
fc71420acb
|
|
@ -482,24 +482,26 @@ void _showContactUs(BuildContext context) {
|
||||||
onPressed: () => Navigator.pop(context),
|
onPressed: () => Navigator.pop(context),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
content: Column(mainAxisSize: MainAxisSize.min, children: <Widget>[
|
content: SingleChildScrollView(
|
||||||
TextFormField(
|
child: Column(mainAxisSize: MainAxisSize.min, children: <Widget>[
|
||||||
enabled: false,
|
TextFormField(
|
||||||
decoration: InputDecoration(
|
enabled: false,
|
||||||
labelText: localization.from,
|
decoration: InputDecoration(
|
||||||
|
labelText: localization.from,
|
||||||
|
),
|
||||||
|
initialValue: '${user.fullName} <${user.email}>',
|
||||||
),
|
),
|
||||||
initialValue: '${user.fullName} <${user.email}>',
|
SizedBox(height: 10),
|
||||||
),
|
TextFormField(
|
||||||
SizedBox(height: 10),
|
decoration: InputDecoration(
|
||||||
TextFormField(
|
labelText: localization.message,
|
||||||
decoration: InputDecoration(
|
),
|
||||||
labelText: localization.message,
|
minLines: 6,
|
||||||
|
maxLines: 6,
|
||||||
),
|
),
|
||||||
minLines: 8,
|
SizedBox(height: 10),
|
||||||
maxLines: 8,
|
]),
|
||||||
),
|
),
|
||||||
SizedBox(height: 10),
|
|
||||||
]),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue