Skip to content

Commit

Permalink
adjust planechase dialog padding to enlarge plane card image
Browse files Browse the repository at this point in the history
  • Loading branch information
j7126 committed May 18, 2024
1 parent c03e607 commit 31e40a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/dialogs/planechase_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ class _PlanechaseDialogState extends State<PlanechaseDialog> {
var imgh = isLandscape ? 672.0 : 936.0;

return AlertDialog(
insetPadding: EdgeInsets.symmetric(horizontal: isLandscape ? 64.0 : 32.0, vertical: isLandscape ? 32.0 : 64.0),
titlePadding: const EdgeInsets.only(top: 12.0, left: 20.0, right: 12.0),
contentPadding: const EdgeInsets.only(left: 16.0, right: 16.0, bottom: 16.0, top: 8.0),
insetPadding: EdgeInsets.symmetric(horizontal: isLandscape ? 64.0 : 0.0, vertical: isLandscape ? 0.0 : 64.0),
titlePadding: EdgeInsets.only(top: isLandscape ? 8.0 : 12.0, left: 20.0, right: 12.0),
contentPadding: const EdgeInsets.only(left: 16.0, right: 16.0, bottom: 8.0, top: 8.0),
title: Row(
children: [
const Text("Planechase"),
Expand Down

0 comments on commit 31e40a4

Please sign in to comment.