Contact us
This commit is contained in:
parent
4b42c3f658
commit
fc71420acb
|
|
@ -482,7 +482,8 @@ void _showContactUs(BuildContext context) {
|
||||||
onPressed: () => Navigator.pop(context),
|
onPressed: () => Navigator.pop(context),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
content: Column(mainAxisSize: MainAxisSize.min, children: <Widget>[
|
content: SingleChildScrollView(
|
||||||
|
child: Column(mainAxisSize: MainAxisSize.min, children: <Widget>[
|
||||||
TextFormField(
|
TextFormField(
|
||||||
enabled: false,
|
enabled: false,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
|
|
@ -495,12 +496,13 @@ void _showContactUs(BuildContext context) {
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
labelText: localization.message,
|
labelText: localization.message,
|
||||||
),
|
),
|
||||||
minLines: 8,
|
minLines: 6,
|
||||||
maxLines: 8,
|
maxLines: 6,
|
||||||
),
|
),
|
||||||
SizedBox(height: 10),
|
SizedBox(height: 10),
|
||||||
]),
|
]),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue