Skip to content

Commit

Permalink
fix: fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jhomlala committed Nov 12, 2023
1 parent 6348b23 commit 3d3af1b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 39 deletions.
28 changes: 0 additions & 28 deletions example/analysis_options.yaml

This file was deleted.

4 changes: 3 additions & 1 deletion lib/ui/page/alice_calls_list_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,9 @@ class _AliceCallsListScreenState extends State<AliceCallsListScreen>
itemCount: callsSorted.length,
itemBuilder: (context, index) {
return AliceCallListItemWidget(
callsSorted[index], _onListItemClicked);
callsSorted[index],
_onListItemClicked,
);
},
),
);
Expand Down
20 changes: 10 additions & 10 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ dependencies:
dev_dependencies:
very_good_analysis: ^5.1.0

flutter:
plugin:
platforms:
android:
package: com.jhomlala.alice
pluginClass: AlicePlugin
ios:
pluginClass: AlicePlugin
macos:
pluginClass: AlicePlugin
flutter:
plugin:
platforms:
android:
package: com.jhomlala.alice
pluginClass: AlicePlugin
ios:
pluginClass: AlicePlugin
macos:
pluginClass: AlicePlugin

0 comments on commit 3d3af1b

Please sign in to comment.