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
3 changes: 0 additions & 3 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
analyzer:
errors:
library_private_types_in_public_api: ignore
include: package:flutter_lints/flutter.yaml
3 changes: 0 additions & 3 deletions example/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
analyzer:
errors:
library_private_types_in_public_api: ignore
include: package:flutter_lints/flutter.yaml
2 changes: 1 addition & 1 deletion example/lib/recipes/pages/edit_recipe_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class EditRecipePage extends StatefulWidget {
final Recipe recipe;

@override
_EditRecipePageState createState() => _EditRecipePageState();
State<EditRecipePage> createState() => _EditRecipePageState();
}

class _EditRecipePageState extends State<EditRecipePage> {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/recipes/pages/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class HomePage extends StatefulWidget {
const HomePage({super.key});

@override
_HomePageState createState() => _HomePageState();
State<HomePage> createState() => _HomePageState();
}

class _HomePageState extends State<HomePage> {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/recipes/views/recipe_list_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class RecipeListView extends StatefulWidget {
const RecipeListView({super.key, required this.searchText});

@override
_RecipeListViewState createState() => _RecipeListViewState();
State<RecipeListView> createState() => _RecipeListViewState();
}

class _RecipeListViewState extends State<RecipeListView> {
Expand Down
2 changes: 1 addition & 1 deletion example/lib/recipes/views/search_box.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SearchBox extends StatefulWidget {
const SearchBox({super.key, required this.onSearchChanged});

@override
_SearchBoxState createState() => _SearchBoxState();
State<SearchBox> createState() => _SearchBoxState();
}

class _SearchBoxState extends State<SearchBox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class JumpingDotsProgressIndicator extends StatefulWidget {
final int milliseconds;

@override
_JumpingDotsProgressIndicatorState createState() =>
State<JumpingDotsProgressIndicator> createState() =>
_JumpingDotsProgressIndicatorState();
}

Expand Down
Loading