Skip to content

Instantly share code, notes, and snippets.

@dariadobsai
Last active February 10, 2021 23:22
Show Gist options
  • Save dariadobsai/3f6b2a5d2e9c6dc284c5d91f37a66d7f to your computer and use it in GitHub Desktop.
Save dariadobsai/3f6b2a5d2e9c6dc284c5d91f37a66d7f to your computer and use it in GitHub Desktop.
Historical map overlay with MapBox in Flutter
Widget _openPopupMenu() => PopupMenuButton<int>(
onSelected: (value) {
setState(() {
value == 1 ? isPresentTime = true : isPresentTime = false; // shorter form: isPresent = value == 1;
});
},
itemBuilder: (context) => [
...
],
icon: Container(
...
),
...
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment