Contact us

This commit is contained in:
Hillel Coren 2019-12-27 15:40:15 +02:00
parent 4b42c3f658
commit fc71420acb
1 changed files with 18 additions and 16 deletions

View File

@ -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),
]), ]),
), ),
),
); );
/* /*