fix feedbackform

This commit is contained in:
otsmr 2025-05-01 23:32:35 +02:00
parent 6715081d89
commit 4beeb8d5c0

View file

@ -73,32 +73,30 @@ class _ContactUsState extends State<ContactUsView> {
),
maxLines: 10,
),
],
),
),
bottomNavigationBar: SafeArea(
child: Padding(
padding: EdgeInsets.all(20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
GestureDetector(
onTap: () {
launchUrl(Uri.parse("https://twonly.eu/support"));
},
child: Text(
'Have you read our FAQ yet?',
style: TextStyle(
color: Colors.blue,
Padding(
padding: EdgeInsets.all(20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
GestureDetector(
onTap: () {
launchUrl(Uri.parse("https://twonly.eu/support"));
},
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'),
),
],
),
),
],
),
),
);