Skip to content

Instantly share code, notes, and snippets.

@moho12n
Created June 14, 2020 21:01
Show Gist options
  • Save moho12n/8dd4e0715a761fa7b5e330d6ca7c2288 to your computer and use it in GitHub Desktop.
Save moho12n/8dd4e0715a761fa7b5e330d6ca7c2288 to your computer and use it in GitHub Desktop.
Positioned.fill(
child: ValueListenableBuilder(
valueListenable: valueNotifier,
builder: (context, value, child) {
return GoogleMap(
zoomControlsEnabled: false,
markers: markers,
myLocationEnabled: true,
myLocationButtonEnabled: false,
onMapCreated: _onMapCreated,
initialCameraPosition: CameraPosition(
target: _center,
zoom: 11.0,
));
}),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment