apptreesoftware / flutter_google_map_view

A flutter plugin for Google Maps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

i can't add other widget to mapView

nattaaek opened this issue · comments

mapView always on top
https://imgur.com/a/JqErzcs

Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('test'),
),
bottomNavigationBar: BottomNavigationBar(
currentIndex: 0,
items: [
BottomNavigationBarItem(
icon: new Icon(Icons.book),
title: new Text('Map'),
),
BottomNavigationBarItem(
icon: new Icon(Icons.info),
title: new Text('Reservation info')
)
],
),
body: showMap(),
);

it's doesn't show any AppBar and buttonNavigation

This is a full-screen plugin. For inline-maps you can consider using package:flutter_map instead