diff --git a/example/lib/screens/configure_download/configure_download.dart b/example/lib/screens/configure_download/configure_download.dart index 34115620..fdb9d725 100644 --- a/example/lib/screens/configure_download/configure_download.dart +++ b/example/lib/screens/configure_download/configure_download.dart @@ -99,7 +99,7 @@ class ConfigureDownloadPopup extends StatelessWidget { .skipExistingTiles = val, activeColor: Theme.of(context).colorScheme.primary, - ) + ), ], ), Row( @@ -115,7 +115,7 @@ class ConfigureDownloadPopup extends StatelessWidget { .skipSeaTiles = val, activeColor: Theme.of(context).colorScheme.primary, - ) + ), ], ), ], diff --git a/example/lib/screens/main/pages/region_selection/components/region_shape.dart b/example/lib/screens/main/pages/region_selection/components/region_shape.dart index 22abb9b7..434e09ce 100644 --- a/example/lib/screens/main/pages/region_selection/components/region_shape.dart +++ b/example/lib/screens/main/pages/region_selection/components/region_shape.dart @@ -23,7 +23,7 @@ class RegionShape extends StatelessWidget { Polyline( points: [ ...provider.coordinates, - provider.currentNewPointPos + provider.currentNewPointPos, ], borderColor: Colors.black, borderStrokeWidth: 2, diff --git a/example/lib/screens/store_editor/components/header.dart b/example/lib/screens/store_editor/components/header.dart index 9625b02c..0326f3af 100644 --- a/example/lib/screens/store_editor/components/header.dart +++ b/example/lib/screens/store_editor/components/header.dart @@ -101,6 +101,6 @@ AppBar buildHeader({ ); } }, - ) + ), ], ); diff --git a/example/lib/screens/store_editor/store_editor.dart b/example/lib/screens/store_editor/store_editor.dart index 80b9d4cd..bb003326 100644 --- a/example/lib/screens/store_editor/store_editor.dart +++ b/example/lib/screens/store_editor/store_editor.dart @@ -193,7 +193,7 @@ class _StoreEditorPopupState extends State { AutovalidateMode.onUserInteraction, keyboardType: TextInputType.number, inputFormatters: [ - FilteringTextInputFormatter.digitsOnly + FilteringTextInputFormatter.digitsOnly, ], initialValue: metadata.data!.isEmpty ? '14' @@ -223,7 +223,7 @@ class _StoreEditorPopupState extends State { AutovalidateMode.onUserInteraction, keyboardType: TextInputType.number, inputFormatters: [ - FilteringTextInputFormatter.digitsOnly + FilteringTextInputFormatter.digitsOnly, ], initialValue: metadata.data!.isEmpty ? '20000' @@ -251,7 +251,7 @@ class _StoreEditorPopupState extends State { items: [ 'cacheFirst', 'onlineFirst', - 'cacheOnly' + 'cacheOnly', ] .map>( (v) => DropdownMenuItem( diff --git a/lib/src/regions/circle.dart b/lib/src/regions/circle.dart index ca0f15b0..c34bf44c 100644 --- a/lib/src/regions/circle.dart +++ b/lib/src/regions/circle.dart @@ -65,7 +65,7 @@ class CircleRegion extends BaseRegion { label: label, labelStyle: labelStyle, labelPlacement: labelPlacement, - ) + ), ], ); diff --git a/lib/src/regions/custom_polygon.dart b/lib/src/regions/custom_polygon.dart index 1fe3ad7a..ba187932 100644 --- a/lib/src/regions/custom_polygon.dart +++ b/lib/src/regions/custom_polygon.dart @@ -62,7 +62,7 @@ class CustomPolygonRegion extends BaseRegion { label: label, labelStyle: labelStyle, labelPlacement: labelPlacement, - ) + ), ], ); diff --git a/lib/src/regions/rectangle.dart b/lib/src/regions/rectangle.dart index 06b8eba4..ae39dda1 100644 --- a/lib/src/regions/rectangle.dart +++ b/lib/src/regions/rectangle.dart @@ -64,7 +64,7 @@ class RectangleRegion extends BaseRegion { labelStyle: labelStyle, labelPlacement: labelPlacement, points: toOutline(), - ) + ), ], );