Skip to content

Commit

Permalink
Fixed lints
Browse files Browse the repository at this point in the history
  • Loading branch information
JaffaKetchup committed Aug 23, 2023
1 parent 1cd6d95 commit 8c78524
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class ConfigureDownloadPopup extends StatelessWidget {
.skipExistingTiles = val,
activeColor:
Theme.of(context).colorScheme.primary,
)
),
],
),
Row(
Expand All @@ -115,7 +115,7 @@ class ConfigureDownloadPopup extends StatelessWidget {
.skipSeaTiles = val,
activeColor:
Theme.of(context).colorScheme.primary,
)
),
],
),
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class RegionShape extends StatelessWidget {
Polyline(
points: [
...provider.coordinates,
provider.currentNewPointPos
provider.currentNewPointPos,
],
borderColor: Colors.black,
borderStrokeWidth: 2,
Expand Down
2 changes: 1 addition & 1 deletion example/lib/screens/store_editor/components/header.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ AppBar buildHeader({
);
}
},
)
),
],
);
6 changes: 3 additions & 3 deletions example/lib/screens/store_editor/store_editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class _StoreEditorPopupState extends State<StoreEditorPopup> {
AutovalidateMode.onUserInteraction,
keyboardType: TextInputType.number,
inputFormatters: [
FilteringTextInputFormatter.digitsOnly
FilteringTextInputFormatter.digitsOnly,
],
initialValue: metadata.data!.isEmpty
? '14'
Expand Down Expand Up @@ -223,7 +223,7 @@ class _StoreEditorPopupState extends State<StoreEditorPopup> {
AutovalidateMode.onUserInteraction,
keyboardType: TextInputType.number,
inputFormatters: [
FilteringTextInputFormatter.digitsOnly
FilteringTextInputFormatter.digitsOnly,
],
initialValue: metadata.data!.isEmpty
? '20000'
Expand Down Expand Up @@ -251,7 +251,7 @@ class _StoreEditorPopupState extends State<StoreEditorPopup> {
items: [
'cacheFirst',
'onlineFirst',
'cacheOnly'
'cacheOnly',
]
.map<DropdownMenuItem<String>>(
(v) => DropdownMenuItem(
Expand Down
2 changes: 1 addition & 1 deletion lib/src/regions/circle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class CircleRegion extends BaseRegion {
label: label,
labelStyle: labelStyle,
labelPlacement: labelPlacement,
)
),
],
);

Expand Down
2 changes: 1 addition & 1 deletion lib/src/regions/custom_polygon.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class CustomPolygonRegion extends BaseRegion {
label: label,
labelStyle: labelStyle,
labelPlacement: labelPlacement,
)
),
],
);

Expand Down
2 changes: 1 addition & 1 deletion lib/src/regions/rectangle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class RectangleRegion extends BaseRegion {
labelStyle: labelStyle,
labelPlacement: labelPlacement,
points: toOutline(),
)
),
],
);

Expand Down

0 comments on commit 8c78524

Please sign in to comment.