mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 13:08:42 +00:00
fix feedbackform
This commit is contained in:
parent
6715081d89
commit
4beeb8d5c0
1 changed files with 22 additions and 24 deletions
|
|
@ -73,32 +73,30 @@ class _ContactUsState extends State<ContactUsView> {
|
||||||
),
|
),
|
||||||
maxLines: 10,
|
maxLines: 10,
|
||||||
),
|
),
|
||||||
],
|
Padding(
|
||||||
),
|
padding: EdgeInsets.all(20),
|
||||||
),
|
child: Row(
|
||||||
bottomNavigationBar: SafeArea(
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
child: Padding(
|
children: [
|
||||||
padding: EdgeInsets.all(20),
|
GestureDetector(
|
||||||
child: Row(
|
onTap: () {
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
launchUrl(Uri.parse("https://twonly.eu/support"));
|
||||||
children: [
|
},
|
||||||
GestureDetector(
|
child: Text(
|
||||||
onTap: () {
|
'Have you read our FAQ yet?',
|
||||||
launchUrl(Uri.parse("https://twonly.eu/support"));
|
style: TextStyle(
|
||||||
},
|
color: Colors.blue,
|
||||||
child: Text(
|
),
|
||||||
'Have you read our FAQ yet?',
|
),
|
||||||
style: TextStyle(
|
|
||||||
color: Colors.blue,
|
|
||||||
),
|
),
|
||||||
),
|
ElevatedButton(
|
||||||
|
onPressed: _submitFeedback,
|
||||||
|
child: Text('Submit'),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
ElevatedButton(
|
),
|
||||||
onPressed: _submitFeedback,
|
],
|
||||||
child: Text('Submit'),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue