Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed keepAlive behaviour #1651

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion lib/src/map/widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ class FlutterMap extends StatefulWidget {
State<FlutterMap> createState() => FlutterMapStateContainer();
}

class FlutterMapStateContainer extends State<FlutterMap> {
class FlutterMapStateContainer extends State<FlutterMap>
with AutomaticKeepAliveClientMixin {
bool _initialCameraFitApplied = false;

late final FlutterMapInternalController _flutterMapInternalController;
Expand Down Expand Up @@ -89,6 +90,8 @@ class FlutterMapStateContainer extends State<FlutterMap> {

@override
Widget build(BuildContext context) {
super.build(context);

return LayoutBuilder(
builder: (context, constraints) {
_updateAndEmitSizeIfConstraintsChanged(constraints);
Expand Down Expand Up @@ -197,4 +200,7 @@ class FlutterMapStateContainer extends State<FlutterMap> {
bool _parentConstraintsAreSet(
BuildContext context, BoxConstraints constraints) =>
constraints.maxWidth != 0 || MediaQuery.sizeOf(context) != Size.zero;

@override
bool get wantKeepAlive => widget.options.keepAlive;
}