File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 3333 - name : Code Analyse
3434 run : dart analyze
3535 - name : Check Publish Warnings
36- run : flutter pub publish --dry-run
36+ run : flutter pub publish --dry-run
Original file line number Diff line number Diff line change 11include : package:flutter_lints/flutter.yaml
22
33analyzer :
4- strong-mode :
5- implicit-casts : false
6- implicit-dynamic : false
4+ language :
5+ strict-inference : true
6+ strict-raw-types : true
77 errors :
88 argument_type_not_assignable : error
99 invalid_assignment : error
Original file line number Diff line number Diff line change @@ -200,7 +200,9 @@ class ShowcaseController {
200200 void handleBarrierTap () {
201201 config.onBarrierClick? .call ();
202202 if (showcaseView.disableBarrierInteraction ||
203- config.disableBarrierInteraction) return ;
203+ config.disableBarrierInteraction) {
204+ return ;
205+ }
204206 _nextIfAny ();
205207 }
206208
You can’t perform that action at this time.
0 commit comments