Closed caibimiaokong closed 1 year ago
In the main function,
void main() { if(Platform.isAndroid) { AndroidGoogleMapsFlutter.useAndroidViewSurface = true; } return runApp(MyApp()); }
AndroidGoogleMapsFlutter.useAndroidViwSurface = true is deprecated, What should I replace with?
AndroidGoogleMapsFlutter.useAndroidViwSurface = true
You probably guessed that you can simply remove it. This was a way to toggle into a new render mode which should be stable and enabled by default at this point.
In the main function,
AndroidGoogleMapsFlutter.useAndroidViwSurface = true
is deprecated, What should I replace with?