-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-linterIssues with the analyzer's support for the linter packageIssues with the analyzer's support for the linter packagelinter-false-negativeIssues related to lint rules that fail to report a problem.Issues related to lint rules that fail to report a problem.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
class _FavoriteFoldersLoadingWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Center(
child: CupertinoActivityIndicator(),
);
}
}should suggest
class _FavoriteFoldersLoadingWidget extends StatelessWidget {
const _FavoriteFoldersLoadingWidget();
@override
Widget build(BuildContext context) {
return const Center(
child: CupertinoActivityIndicator(),
);
}
}Metadata
Metadata
Assignees
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-linterIssues with the analyzer's support for the linter packageIssues with the analyzer's support for the linter packagelinter-false-negativeIssues related to lint rules that fail to report a problem.Issues related to lint rules that fail to report a problem.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug