Skip to content

Commit

Permalink
feat: update to flutter 3.22.0 (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo authored Jun 12, 2024
1 parent cce6975 commit e8e71b1
Show file tree
Hide file tree
Showing 4 changed files with 7 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.21.0
- Update to Flutter 3.22.0

# 0.20.0
- feat: adding different frames to `NesDialog`s
- feat: allow `NesFileExplorer` to have custom icons
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ packages:
dependency: transitive
description:
name: meta
sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04
sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
url: "https://pub.dev"
source: hosted
version: "1.11.0"
version: "1.12.0"
mini_sprite:
dependency: "direct main"
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/src/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ ThemeData flutterNesTheme({
final toolTipTheme = nesTooltipTheme ??
NesTooltipTheme(
background: textTheme.bodyMedium?.color ?? Colors.black,
textColor: themeData.colorScheme.background,
textColor: themeData.colorScheme.surface,
);

final containerTheme = nesContainerTheme ??
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widgets/dialogs/nes_input_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class _NesInputDialogState extends State<NesInputDialog> {
type: NesButtonType.warning,
child: Text(widget.cancelLabel),
onPressed: () {
Navigator.of(context).pop(null);
Navigator.of(context).pop();
},
),
const SizedBox(width: 16),
Expand Down

0 comments on commit e8e71b1

Please sign in to comment.