Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Some padding fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
blazern committed Feb 19, 2022
1 parent 8ab98f9 commit 24587a3
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions lib/ui/settings/settings_help_and_feedback_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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),
Expand Down Expand Up @@ -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))));
}
}

Expand Down

0 comments on commit 24587a3

Please sign in to comment.