Skip to content

Instantly share code, notes, and snippets.

@dariadobsai
Created February 10, 2021 22:15
Show Gist options
  • Save dariadobsai/a17fb3a03d9fbc61db24c62585562119 to your computer and use it in GitHub Desktop.
Save dariadobsai/a17fb3a03d9fbc61db24c62585562119 to your computer and use it in GitHub Desktop.
Historical map overlay with MapBox in Flutter
return SafeArea(
child: Scaffold(
body: Stack(
children: [
FlutterMap(
...
),
Positioned(
top: 0,
right: 0,
child: Container(height: 60.0, width: 60.0, child: _openPopupMenu()),
),
],
),
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment