reassemble method
- @override
inherited
Called whenever the application is reassembled during debugging, for example during hot reload.
This method should rerun any initialization logic that depends on global state, for example, image loading from asset bundles (since the asset bundle may have changed).
This function will only be called during development. In release builds,
the ext.flutter.reassemble
hook is not available, and so this code will
never execute.
See also:
- State.reassemble
BindingBase.reassembleApplication
- Image, which uses this to reload images.
Implementation
@override
void reassemble() {
state.reassemble();
super.reassemble();
}