Skip to content

Commit edf8197

Browse files
committed
Fix: _LocationFieldDialogState.initState.
1 parent 4db857a commit edf8197

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/widgets/location_field_dialog.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ class _LocationFieldDialogState extends State<LocationFieldDialog> {
8686

8787
@override
8888
void initState() {
89+
super.initState();
8990
_initialCameraPosition = widget.initialCameraPosition ??
9091
CameraPosition(
9192
target: LatLng(37.42796133580664, -122.085749655962),
9293
zoom: 14.4746,
9394
);
9495
_value = _initialCameraPosition;
95-
super.initState();
9696
}
9797

9898
@override

0 commit comments

Comments
 (0)