Skip to content

Commit

Permalink
dualog size fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nbonamy committed Dec 15, 2023
1 parent a76ac29 commit 25f7b25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/components/draggable_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class _DraggableDialogState extends State<DraggableDialog> {
direction: Axis.vertical,
children: [
Expanded(child: widget.body),
const SizedBox(height: 24),
const SizedBox(height: 16),
widget.footer,
],
),
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/transcoder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class _TranscoderWidgetState extends State<TranscoderWidget> {

return DraggableDialog(
width: 550,
height: 435,
height: 445,
headerBgColor: const Color.fromRGBO(240, 234, 230, 1.0),
//: const Color.fromRGBO(240, 234, 230, 1.0),
// contentsBgColor: const Color.fromRGBO(246, 240, 236, 1.0),
Expand Down

0 comments on commit 25f7b25

Please sign in to comment.