防止切换页面时 google 地图颤动重建

Prevent google maps flutter from rebuilding when switching the pages

我有一个很烦人的问题google 切换底部导航页面后地图会颤动重建。我已经保留了最后的缩放和相机位置,但是每次我进入地图页面时小部件都会自行重建。如何预防?

使用

AutomaticKeepAliveClientMixin

例如,

class _ExampleClass extends State<ExampleState> with 
AutomaticKeepAliveClientMixin<ExampleState> {
@override
bool get wantKeepAlive => true;