扑打谷歌地图标记后如何添加底部工作表?

时间:2019-02-27 13:00:03

标签: flutter

我希望在点击Google地图标记时显示一个底页,以显示该地点的详细信息。

1 个答案:

答案 0 :(得分:0)

void _onMapCreated(GoogleMapController controller) {
    controller.onMarkerTapped(_onMarkerTapped);
}

_onMarkerTapped(Marker markerTapped) {
     showModalBottomSheet<void>(context: context, builder: (BuildContext context) {
              return Container(
                child: Padding(
                  padding: const EdgeInsets.all(32.0),
                  child: Text('Write your text',
                    textAlign: TextAlign.center,
                    style: TextStyle(
                      color: Colors.black,
                      fontSize: 24.0
                    )
                  )
                )
              );
      });


}