From 24587a303971446fdc66391b0af73cf3489d8702 Mon Sep 17 00:00:00 2001 From: blazern Date: Sat, 19 Feb 2022 12:13:47 +0300 Subject: [PATCH] Some padding fixes --- .../settings_help_and_feedback_page.dart | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/lib/ui/settings/settings_help_and_feedback_page.dart b/lib/ui/settings/settings_help_and_feedback_page.dart index 1e5fbfa1..c25e33c3 100644 --- a/lib/ui/settings/settings_help_and_feedback_page.dart +++ b/lib/ui/settings/settings_help_and_feedback_page.dart @@ -79,6 +79,7 @@ class _SettingsHelpAndFeedbackPageState ])), const SizedBox(height: 18), ]), + const SizedBox(height: 6), _Padding24(Stack(children: [ Column(crossAxisAlignment: CrossAxisAlignment.start, children: [ Text(context.strings.settings_page_your_id, @@ -96,6 +97,7 @@ class _SettingsHelpAndFeedbackPageState }, icon: SvgPicture.asset('assets/copy.svg'))), ])), + const SizedBox(height: 16), SettingsGeneralButton( text: context.strings.settings_page_send_logs, onTap: Log.startLogsSending), @@ -187,12 +189,14 @@ class _ContactButton extends StatelessWidget { @override Widget build(BuildContext context) { - return IconButton( - padding: EdgeInsets.zero, - onPressed: () { - launch(url); - }, - icon: SizedBox(width: 38, height: 38, child: Image.asset(png))); + return Padding( + padding: const EdgeInsets.only(right: 6), + child: IconButton( + padding: EdgeInsets.zero, + onPressed: () { + launch(url); + }, + icon: SizedBox(width: 38, height: 38, child: Image.asset(png)))); } }