Skip to content

Commit

Permalink
fix: hot reload didn't work property
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcheung committed Feb 21, 2024
1 parent e68f538 commit 40b7de9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/src/flutter_deck_app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ class _FlutterDeckAppState extends State<FlutterDeckApp> {
_router = _flutterDeckRouter.build();
}

@override
void reassemble() {
super.reassemble();
_router = _flutterDeckRouter.build();
}

@override
Widget build(BuildContext context) {
return ValueListenableBuilder(
Expand Down

0 comments on commit 40b7de9

Please sign in to comment.