From 4beeb8d5c008c58cff9f8f8ab9d275d929ceb1d5 Mon Sep 17 00:00:00 2001 From: otsmr Date: Thu, 1 May 2025 23:32:35 +0200 Subject: [PATCH] fix feedbackform --- .../views/settings/help/contact_us_view.dart | 46 +++++++++---------- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/lib/src/views/settings/help/contact_us_view.dart b/lib/src/views/settings/help/contact_us_view.dart index 88d031b..4af58b9 100644 --- a/lib/src/views/settings/help/contact_us_view.dart +++ b/lib/src/views/settings/help/contact_us_view.dart @@ -73,32 +73,30 @@ class _ContactUsState extends State { ), 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'), - ), - ], - ), + ), + ], ), ), );