Skip to content

Commit

Permalink
Merge branch 'dev' into date_time_pickers
Browse files Browse the repository at this point in the history
  • Loading branch information
GroovinChip committed Apr 21, 2022
2 parents 4609f5b + 414a19b commit a6b2be7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [0.12.3+1]
* Fix `padding` on `MacosAlertDialog` when `supress` is null [#188](https://github.com/GroovinChip/macos_ui/issues/188)

## [0.12.3]
* Remove `MacosScrollbar` from `ContentArea` widget (fixes [#170](https://github.com/GroovinChip/macos_ui/issues/170))
* Remove useless bundled fonts (fixes [#187](https://github.com/GroovinChip/macos_ui/issues/187))
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.12.3"
version: "0.12.3+1"
matcher:
dependency: transitive
description:
Expand Down
5 changes: 3 additions & 2 deletions lib/src/dialogs/macos_alert_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,13 @@ class MacosAlertDialog extends StatelessWidget {
),
],
],
const SizedBox(height: 16),
if (suppress != null)
if (suppress != null) ...[
const SizedBox(height: 16),
DefaultTextStyle(
style: MacosTheme.of(context).typography.headline,
child: suppress!,
),
],
const SizedBox(height: 16),
],
),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: macos_ui
description: Flutter widgets and themes implementing the current macOS design language.
version: 0.12.3
version: 0.12.3+1
homepage: "https://github.com/GroovinChip/macos_ui"

environment:
Expand Down

0 comments on commit a6b2be7

Please sign in to comment.