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