summaryrefslogtreecommitdiff
path: root/lib/events
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-11-03 10:59:37 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-11-03 11:06:18 +0100
commitd14e215396f7aee61fb8d7963736063ee859b928 (patch)
tree6b21387fe0e5765a4d74e791b62a7d9eeb64b761 /lib/events
parentec7c6e4f7ebd4e096722c7cfd1e651867207ec07 (diff)
werken aan navigatie
Diffstat (limited to 'lib/events')
-rw-r--r--lib/events/MapPanningEvent.dart4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/events/MapPanningEvent.dart b/lib/events/MapPanningEvent.dart
new file mode 100644
index 0000000..61868e3
--- /dev/null
+++ b/lib/events/MapPanningEvent.dart
@@ -0,0 +1,4 @@
+class MapPanningEvent {
+ final bool isPanning;
+ MapPanningEvent(bool _isPanning) : isPanning = _isPanning;
+}