Skip to content

Commit

Permalink
fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
ubbabeck committed Sep 25, 2023
1 parent 5bf89bc commit a612ecc
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ class EnterPaymentInfoDialogState extends State<EnterPaymentInfoDialog> {
final texts = context.texts();

return AlertDialog(
titlePadding: const EdgeInsets.fromLTRB(24.0, 22.0, 0.0, 16.0),
titlePadding: const EdgeInsets.fromLTRB(24.0, 16.0, 0.0, 8),
title: Text(texts.payment_info_dialog_title),
contentPadding: const EdgeInsets.fromLTRB(24.0, 8.0, 24.0, 24.0),
contentPadding: const EdgeInsets.symmetric(horizontal: 24, vertical: 4),
actionsPadding: const EdgeInsets.symmetric(horizontal: 8.0, vertical: 4),
content: _buildPaymentInfoForm(context),
actions: _buildActions(context),
);
Expand Down Expand Up @@ -88,7 +89,7 @@ class EnterPaymentInfoDialogState extends State<EnterPaymentInfoDialog> {
icon: Image(
image: const AssetImage("src/icon/qr_scan.png"),
color: themeData.primaryIconTheme.color,
fit: BoxFit.contain,
//fit: BoxFit.contain,
width: 24.0,
height: 24.0,
),
Expand Down

0 comments on commit a612ecc

Please sign in to comment.