Created
February 10, 2021 22:15
-
-
Save dariadobsai/a17fb3a03d9fbc61db24c62585562119 to your computer and use it in GitHub Desktop.
Historical map overlay with MapBox in Flutter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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