Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/flutter_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache: true
- uses: bluefireteam/melos-action@v3
- name: Lint analysis
run: melos analyze
run: melos analyze --fatal-warnings --fatal-infos --concurrency 10

build-android:
name: "Build Android apk"
Expand Down
2 changes: 1 addition & 1 deletion example/lib/map_ui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class MapUiBodyState extends State<MapUiBody> {
}

Widget _myLocationRenderModeCycler() {
final MyLocationRenderMode nextType = MyLocationRenderMode.values[
final nextType = MyLocationRenderMode.values[
(_myLocationRenderMode.index + 1) % MyLocationRenderMode.values.length];
return TextButton(
onPressed:
Expand Down