Структура проекта:
lib
├─ app.dart
├─ data
│ ├─ datasources
│ │ ├─ recipe_local.dart
│ │ └─ recipe_remote.dart
│ └─ models
│ ├─ recipe_response.dart
│ └─ recipe_response.g.dart
├─ domain
│ ├─ recipe.dart
│ └─ recipe_repo.dart
├─ main.dart
└─ presentation
├─ bloc
│ ├─ recipe_list
│ │ ├─ recipe_list_bloc.dart
│ │ ├─ recipe_list_event.dart
│ │ └─ recipe_list_state.dart
│ └─ theme
│ └─ theme_cubit.dart
├─ screens
│ ├─ screen_recipe_detail.dart
│ └─ screen_recipe_list.dart
└─ widgets
├─ error_widget.dart
├─ img_view.dart
├─ recipe_card.dart
└─ search_filter_bar.dart