Created
June 14, 2020 21:01
-
-
Save moho12n/8dd4e0715a761fa7b5e330d6ca7c2288 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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