├── .github ├── dependabot.yml └── workflows │ ├── lint_check_and_run_test.yml │ └── release_and_upload.yml ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ └── values │ │ │ └── ic_launcher_background.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── app │ │ │ │ └── FlutterMultiDexApplication.java │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── andannn │ │ │ │ └── aniflow │ │ │ │ ├── AniflowApplication.kt │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── provider_paths.xml │ │ └── profile │ │ ├── AndroidManifest.xml │ │ ├── google-services.json │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ ├── drawable │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ └── ic_launcher_background.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── image │ ├── ic_launcher-playstore.png │ ├── ic_youtube_xml │ └── new_badge.png ├── json │ ├── detail_media_data.json │ ├── media_list_data_1.json │ ├── media_list_data_2.json │ └── remote_config_defaults.json └── video │ ├── long_press_gesture_video.mp4 │ └── sliding_gesture_video.mp4 ├── devtools_options.yaml ├── firebase.json ├── firepit-log.txt ├── flutter_native_splash.yaml ├── integration_test └── integration_test.dart ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── iTunesArtwork@2x 1.png │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── RunnerTests │ └── RunnerTests.swift ├── build │ └── .last_build_id └── firebase_app_id_file.json ├── l10n.yaml ├── lib ├── app │ ├── app.dart │ ├── app_bloc.dart │ ├── app_state.dart │ ├── app_state.freezed.dart │ ├── di │ │ ├── env.dart │ │ ├── get_it_di.config.dart │ │ ├── get_it_di.dart │ │ └── get_it_scope.dart │ ├── l10n │ │ ├── app_en.arb │ │ ├── app_ja.arb │ │ ├── app_localizations.dart │ │ ├── app_localizations_en.dart │ │ ├── app_localizations_ja.dart │ │ ├── app_localizations_zh.dart │ │ └── app_zh.arb │ └── routing │ │ ├── model │ │ ├── ani_flow_route_path.dart │ │ ├── ani_flow_route_path.freezed.dart │ │ └── ani_flow_route_path.g.dart │ │ ├── root_router_delegate.dart │ │ ├── root_router_info_parser.dart │ │ └── util │ │ └── ani_flow_page_generator.dart ├── callback_dispatcher.dart ├── core │ ├── background_task │ │ ├── di │ │ │ └── workmanager_module.dart │ │ ├── executor.dart │ │ ├── executors │ │ │ └── post_anilist_notification_task_executor.dart │ │ ├── task.dart │ │ ├── task_manager.dart │ │ └── tasks │ │ │ ├── post_anilist_notification_task.dart │ │ │ └── sync_new_released_play_source_task.dart │ ├── common │ │ ├── definitions │ │ │ ├── activity_filter_type.dart │ │ │ ├── activity_filter_type.g.dart │ │ │ ├── activity_scope_category.dart │ │ │ ├── activity_scope_category.g.dart │ │ │ ├── activity_type.dart │ │ │ ├── activity_type.g.dart │ │ │ ├── ani_list_settings.dart │ │ │ ├── ani_list_settings.freezed.dart │ │ │ ├── ani_list_settings.g.dart │ │ │ ├── anime_season.dart │ │ │ ├── anime_season.g.dart │ │ │ ├── anime_source.dart │ │ │ ├── anime_source.g.dart │ │ │ ├── character_role.dart │ │ │ ├── character_role.g.dart │ │ │ ├── extension │ │ │ │ └── activity_type_extension.dart │ │ │ ├── favorite_category.dart │ │ │ ├── home_sector_category.dart │ │ │ ├── home_sector_category.g.dart │ │ │ ├── media_category.dart │ │ │ ├── media_external_link_type.dart │ │ │ ├── media_external_link_type.g.dart │ │ │ ├── media_format.dart │ │ │ ├── media_format.g.dart │ │ │ ├── media_list_status.dart │ │ │ ├── media_list_status.g.dart │ │ │ ├── media_relation.dart │ │ │ ├── media_relation.g.dart │ │ │ ├── media_sort.dart │ │ │ ├── media_sort.g.dart │ │ │ ├── media_status.dart │ │ │ ├── media_status.g.dart │ │ │ ├── media_type.dart │ │ │ ├── media_type.g.dart │ │ │ ├── notification_type.dart │ │ │ ├── refresh_time_key.dart │ │ │ ├── refresh_time_key.freezed.dart │ │ │ ├── refresh_time_key.g.dart │ │ │ ├── staff_language.dart │ │ │ ├── staff_language.g.dart │ │ │ ├── track_list_filter.dart │ │ │ ├── track_list_filter.g.dart │ │ │ ├── user_statics_sort.dart │ │ │ ├── user_statics_sort.g.dart │ │ │ └── user_stats_type.dart │ │ ├── dialog │ │ │ ├── about_dialog.dart │ │ │ ├── dialog_handler.dart │ │ │ ├── dialog_type.dart │ │ │ ├── dialog_type.freezed.dart │ │ │ ├── dialog_type.g.dart │ │ │ ├── downloading_dialog.dart │ │ │ ├── message_dialog.dart │ │ │ └── tutorial_dialog.dart │ │ ├── message │ │ │ ├── snack_bar_message.dart │ │ │ └── snack_bar_message_mixin.dart │ │ ├── setting │ │ │ ├── about.dart │ │ │ ├── check_app_update.dart │ │ │ ├── display_adult_content.dart │ │ │ ├── github_link_setting.dart │ │ │ ├── in_app_player.dart │ │ │ ├── score_format.dart │ │ │ ├── score_format.g.dart │ │ │ ├── setting.dart │ │ │ ├── theme_setting.dart │ │ │ ├── theme_setting.g.dart │ │ │ ├── tutorial_setting.dart │ │ │ ├── user_staff_name_language.dart │ │ │ ├── user_staff_name_language.g.dart │ │ │ ├── user_title_language.dart │ │ │ └── user_title_language.g.dart │ │ ├── state_stream.dart │ │ └── util │ │ │ ├── anime_season_util.dart │ │ │ ├── app_version_util.dart │ │ │ ├── bloc_util.dart │ │ │ ├── change_notifier_util.dart │ │ │ ├── collection_util.dart │ │ │ ├── color_util.dart │ │ │ ├── connectivity_util.dart │ │ │ ├── dao_change_notifier_mixin.dart │ │ │ ├── description_item_util.dart │ │ │ ├── error_handler.dart │ │ │ ├── global_static_constants.dart │ │ │ ├── load_page_util.dart │ │ │ ├── loading_state_mixin.dart │ │ │ ├── logger.dart │ │ │ ├── network_util.dart │ │ │ ├── scheme_util.dart │ │ │ ├── screen_size_util.dart │ │ │ ├── stream_util.dart │ │ │ ├── string_resource_util.dart │ │ │ └── time_util.dart │ ├── data │ │ ├── activity_repository.dart │ │ ├── app_update_dialog_util.dart │ │ ├── auth_repository.dart │ │ ├── character_repository.dart │ │ ├── favorite_repository.dart │ │ ├── github_repository.dart │ │ ├── load_result.dart │ │ ├── mappers │ │ │ ├── activity_mapper.dart │ │ │ ├── activity_reply_mapper.dart │ │ │ ├── airing_schedule_mapper.dart │ │ │ ├── character_mapper.dart │ │ │ ├── github_mapper.dart │ │ │ ├── media_external_link_mapper.dart │ │ │ ├── media_list_mapper.dart │ │ │ ├── media_mapper.dart │ │ │ ├── media_relation_mapper.dart │ │ │ ├── staff_mapper.dart │ │ │ ├── studio_mapper.dart │ │ │ └── user_mapper.dart │ │ ├── media_information_repository.dart │ │ ├── media_list_repository.dart │ │ ├── message_repository.dart │ │ ├── mocks │ │ │ ├── mock_auth_repository.dart │ │ │ ├── mock_favorite_repository.dart │ │ │ ├── mock_media_information_repository.dart │ │ │ ├── mock_media_list_repository.dart │ │ │ ├── mock_message_repository.dart │ │ │ └── mock_user_data_repository.dart │ │ ├── model │ │ │ ├── activity_model.dart │ │ │ ├── activity_reply_model.dart │ │ │ ├── activity_reply_model.freezed.dart │ │ │ ├── airing_schedule_and_anime_model.dart │ │ │ ├── airing_schedule_model.dart │ │ │ ├── airing_schedule_model.freezed.dart │ │ │ ├── anime_list_item_model.dart │ │ │ ├── anime_list_item_model.freezed.dart │ │ │ ├── character_and_voice_actor_model.dart │ │ │ ├── character_model.dart │ │ │ ├── character_model.freezed.dart │ │ │ ├── episode_model.dart │ │ │ ├── episode_model.freezed.dart │ │ │ ├── episode_model.g.dart │ │ │ ├── extension │ │ │ │ ├── airing_schedule_and_anime_model_extension.dart │ │ │ │ └── media_list_item_model_extension.dart │ │ │ ├── favorite_item_model.dart │ │ │ ├── github_user_model.dart │ │ │ ├── github_user_model.freezed.dart │ │ │ ├── github_user_model.g.dart │ │ │ ├── home_sector_model.dart │ │ │ ├── media_cover_image_model.dart │ │ │ ├── media_cover_image_model.freezed.dart │ │ │ ├── media_external_link_model.dart │ │ │ ├── media_external_link_model.freezed.dart │ │ │ ├── media_external_link_model.g.dart │ │ │ ├── media_model.dart │ │ │ ├── media_model.freezed.dart │ │ │ ├── media_relation_model.dart │ │ │ ├── media_tag_model.dart │ │ │ ├── media_tag_model.freezed.dart │ │ │ ├── media_title_model.dart │ │ │ ├── media_title_model.freezed.dart │ │ │ ├── media_title_model.g.dart │ │ │ ├── media_with_list_model.dart │ │ │ ├── notification_model.dart │ │ │ ├── release_package_model.dart │ │ │ ├── release_package_model.freezed.dart │ │ │ ├── search_result_model.dart │ │ │ ├── search_result_model.freezed.dart │ │ │ ├── search_result_model.g.dart │ │ │ ├── shortcut │ │ │ │ ├── activity_status_record.dart │ │ │ │ └── activity_status_record.freezed.dart │ │ │ ├── sorted_group_media_list_model.dart │ │ │ ├── staff_and_role_model.dart │ │ │ ├── staff_character_and_media_connection.dart │ │ │ ├── staff_character_name_model.dart │ │ │ ├── staff_character_name_model.freezed.dart │ │ │ ├── staff_character_name_model.g.dart │ │ │ ├── staff_model.dart │ │ │ ├── staff_model.freezed.dart │ │ │ ├── studio_model.dart │ │ │ ├── studio_model.freezed.dart │ │ │ ├── subject_with_episodes_model.dart │ │ │ ├── subject_with_episodes_model.freezed.dart │ │ │ ├── subject_with_episodes_model.g.dart │ │ │ ├── trailer_model.dart │ │ │ ├── trailer_model.freezed.dart │ │ │ ├── user_data_model.dart │ │ │ ├── user_data_model.freezed.dart │ │ │ ├── user_model.dart │ │ │ ├── user_model.freezed.dart │ │ │ └── user_statistics_model.dart │ │ ├── notification_repository.dart │ │ ├── search_repository.dart │ │ ├── user_data_repository.dart │ │ ├── user_info_repository.dart │ │ └── user_statistics_repository.dart │ ├── database │ │ ├── aniflow_database.dart │ │ ├── aniflow_database.g.dart │ │ ├── dao │ │ │ ├── activity_dao.dart │ │ │ ├── activity_dao.g.dart │ │ │ ├── airing_schedules_dao.dart │ │ │ ├── airing_schedules_dao.g.dart │ │ │ ├── character_dao.dart │ │ │ ├── character_dao.g.dart │ │ │ ├── episode_dao.dart │ │ │ ├── episode_dao.g.dart │ │ │ ├── favorite_dao.dart │ │ │ ├── favorite_dao.g.dart │ │ │ ├── github_release_dao.dart │ │ │ ├── github_release_dao.g.dart │ │ │ ├── media_dao.dart │ │ │ ├── media_dao.g.dart │ │ │ ├── media_list_dao.dart │ │ │ ├── media_list_dao.g.dart │ │ │ ├── search_result_cache_dao.dart │ │ │ ├── search_result_cache_dao.g.dart │ │ │ ├── staff_dao.dart │ │ │ ├── staff_dao.g.dart │ │ │ ├── studio_dao.dart │ │ │ ├── studio_dao.g.dart │ │ │ ├── user_dao.dart │ │ │ └── user_dao.g.dart │ │ ├── di │ │ │ └── database_module.dart │ │ ├── drift_schemas │ │ │ ├── drift_schema_v1.json │ │ │ ├── drift_schema_v10.json │ │ │ ├── drift_schema_v11.json │ │ │ ├── drift_schema_v2.json │ │ │ ├── drift_schema_v3.json │ │ │ ├── drift_schema_v4.json │ │ │ ├── drift_schema_v5.json │ │ │ ├── drift_schema_v6.json │ │ │ ├── drift_schema_v7.json │ │ │ ├── drift_schema_v8.json │ │ │ ├── drift_schema_v9.json │ │ │ └── schema_versions.dart │ │ ├── intercepters │ │ │ └── log_interceptor.dart │ │ ├── mappers │ │ │ ├── activity_mapper.dart │ │ │ ├── airing_schedule_mapper.dart │ │ │ ├── character_mapper.dart │ │ │ ├── github_data_mapper.dart │ │ │ ├── media_external_link_mapper.dart │ │ │ ├── media_list_mapper.dart │ │ │ ├── media_mapper.dart │ │ │ ├── staff_mapper.dart │ │ │ ├── studio_mapper.dart │ │ │ └── user_mapper.dart │ │ ├── relations │ │ │ ├── activity_and_user_relation.dart │ │ │ ├── airing_schedule_and_media_relation.dart │ │ │ ├── character_and_related_media_relation.dart │ │ │ ├── character_and_voice_actor_relation.dart │ │ │ ├── media_and_relation_type_entity.dart │ │ │ ├── media_list_and_media_relation.dart │ │ │ ├── sorted_group_media_list_entity.dart │ │ │ └── staff_and_role_relation_entity.dart │ │ └── tables │ │ │ ├── activity_filter_type_paging_cross_reference_table.dart │ │ │ ├── activity_table.dart │ │ │ ├── airing_schedule_table.dart │ │ │ ├── category_media_paging_cross_reference_table.dart │ │ │ ├── character_media_cross_reference_table.dart │ │ │ ├── character_table.dart │ │ │ ├── character_voice_actor_cross_reference_table.dart │ │ │ ├── episode_table.dart │ │ │ ├── favorite_info_table.dart │ │ │ ├── media_airing_schedule_updated_table.dart │ │ │ ├── media_character_paging_cross_reference_table.dart │ │ │ ├── media_external_link_table.dart │ │ │ ├── media_list_table.dart │ │ │ ├── media_relation_cross_reference_table.dart │ │ │ ├── media_staff_paging_cross_reference_table.dart │ │ │ ├── media_table.dart │ │ │ ├── released_package_table.dart │ │ │ ├── search_result_table.dart │ │ │ ├── staff_table.dart │ │ │ ├── studio_media_cross_reference_table.dart │ │ │ ├── studio_table.dart │ │ │ └── user_table.dart │ ├── design_system │ │ ├── animation │ │ │ ├── page_transaction_animation.dart │ │ │ └── scale_transaction_animation.dart │ │ ├── assets │ │ │ ├── icons.dart │ │ │ └── video.dart │ │ ├── dialog │ │ │ ├── restart_app_dialog.dart │ │ │ └── scoring_dialog.dart │ │ ├── theme │ │ │ └── colors.dart │ │ └── widget │ │ │ ├── activity_item_widget.dart │ │ │ ├── af_html_widget.dart │ │ │ ├── af_network_image.dart │ │ │ ├── af_toggle_button.dart │ │ │ ├── airing_media_item.dart │ │ │ ├── avatar_icon.dart │ │ │ ├── character_and_voice_actor_widget.dart │ │ │ ├── character_with_media_item_widget.dart │ │ │ ├── comming_soon.dart │ │ │ ├── date_time_button.dart │ │ │ ├── external_link_item.dart │ │ │ ├── genre_item.dart │ │ │ ├── image_load_initial_widget.dart │ │ │ ├── info_item.dart │ │ │ ├── loading_dummy_scaffold.dart │ │ │ ├── loading_indicator.dart │ │ │ ├── max_limit_text_filed.dart │ │ │ ├── media_cover.dart │ │ │ ├── media_list_item.dart │ │ │ ├── media_preview_item.dart │ │ │ ├── media_relation_widget.dart │ │ │ ├── media_row_item.dart │ │ │ ├── notification_item_widget.dart │ │ │ ├── page_bottom_state_indicator.dart │ │ │ ├── popup_menu_anchor.dart │ │ │ ├── reactive_profile_with_description.dart │ │ │ ├── search_anime_item.dart │ │ │ ├── short_num_label_icon_button.dart │ │ │ ├── shrinkable_floating_action_button.dart │ │ │ ├── staff_item.dart │ │ │ ├── trailer_preview.dart │ │ │ ├── twitter_hashtag_widget.dart │ │ │ └── vertical_animated_scale_switcher.dart │ ├── firebase │ │ ├── analytics │ │ │ ├── data_size_property │ │ │ │ └── data_type.dart │ │ │ ├── fa_event.dart │ │ │ ├── fa_user_property.dart │ │ │ └── firebase_analytics_util.dart │ │ └── remote_config │ │ │ ├── di │ │ │ └── remote_config_module.dart │ │ │ ├── model │ │ │ ├── home_struct_remote_model.dart │ │ │ ├── home_struct_remote_model.freezed.dart │ │ │ └── home_struct_remote_model.g.dart │ │ │ └── remote_config_manager.dart │ ├── network │ │ ├── ani_list_data_source.dart │ │ ├── api │ │ │ ├── activity_detail_query_graphql.dart │ │ │ ├── activity_like_mution_graphql.dart │ │ │ ├── activity_page_query_graphql.dart │ │ │ ├── airing_schedules_query_graphql.dart.dart │ │ │ ├── ani_auth_mution_graphql.dart │ │ │ ├── ani_save_media_list_mution_graphql.dart │ │ │ ├── character_detail_query_graphql.dart │ │ │ ├── common_graphql.dart │ │ │ ├── media_content_graphql.dart │ │ │ ├── media_detail_query_graphql.dart │ │ │ ├── media_list_query_graphql.dart │ │ │ ├── media_page_query_graphql.dart │ │ │ ├── medias_query_graphql.dart │ │ │ ├── notification_query_graphql.dart │ │ │ ├── query_anime_staff_page_graphql.dart │ │ │ ├── query_media_character_page_graphql.dart │ │ │ ├── search_query_graphql.dart │ │ │ ├── staff_detail_query_graphql.dart │ │ │ ├── studio_detail_query_graphql.dart │ │ │ ├── toggle_favorite_mutation_graphql.dart │ │ │ ├── user_content_graphql.dart │ │ │ ├── user_favorite_anime_query_graphql.dart │ │ │ ├── user_favorite_character_query_graphql.dart │ │ │ ├── user_favorite_manga_query_graphql.dart │ │ │ ├── user_favorite_query_graphql.dart │ │ │ ├── user_favorite_staff_query_graphql.dart │ │ │ └── user_stats_query_graphql.dart │ │ ├── auth_data_source.dart │ │ ├── di │ │ │ └── di_network_module.dart │ │ ├── github_data_source.dart │ │ ├── model │ │ │ ├── activity_like_notification_dto.dart │ │ │ ├── activity_like_notification_dto.freezed.dart │ │ │ ├── activity_like_notification_dto.g.dart │ │ │ ├── activity_message_notification_dto.dart │ │ │ ├── activity_message_notification_dto.freezed.dart │ │ │ ├── activity_message_notification_dto.g.dart │ │ │ ├── activity_reply_dto.dart │ │ │ ├── activity_reply_dto.freezed.dart │ │ │ ├── activity_reply_dto.g.dart │ │ │ ├── activity_reply_like_notification_dto.dart │ │ │ ├── activity_reply_like_notification_dto.freezed.dart │ │ │ ├── activity_reply_like_notification_dto.g.dart │ │ │ ├── activity_reply_notification_dto.dart │ │ │ ├── activity_reply_notification_dto.freezed.dart │ │ │ ├── activity_reply_notification_dto.g.dart │ │ │ ├── activity_reply_subscription_notification_dto.dart │ │ │ ├── activity_reply_subscription_notification_dto.freezed.dart │ │ │ ├── activity_reply_subscription_notification_dto.g.dart │ │ │ ├── airing_notification_dto.dart │ │ │ ├── airing_notification_dto.freezed.dart │ │ │ ├── airing_notification_dto.g.dart │ │ │ ├── airing_schedule_dto.dart │ │ │ ├── airing_schedule_dto.freezed.dart │ │ │ ├── airing_schedule_dto.g.dart │ │ │ ├── ani_activity.dart │ │ │ ├── anime_rank.dart │ │ │ ├── anime_rank.freezed.dart │ │ │ ├── anime_rank.g.dart │ │ │ ├── bangumi_subject_dto.dart │ │ │ ├── bangumi_subject_dto.freezed.dart │ │ │ ├── bangumi_subject_dto.g.dart │ │ │ ├── character_connection.dart │ │ │ ├── character_connection.freezed.dart │ │ │ ├── character_connection.g.dart │ │ │ ├── character_dto.dart │ │ │ ├── character_dto.freezed.dart │ │ │ ├── character_dto.g.dart │ │ │ ├── character_edge.dart │ │ │ ├── character_edge.freezed.dart │ │ │ ├── character_edge.g.dart │ │ │ ├── character_image_dto.dart │ │ │ ├── character_image_dto.freezed.dart │ │ │ ├── character_image_dto.g.dart │ │ │ ├── following_notification_dto.dart │ │ │ ├── following_notification_dto.freezed.dart │ │ │ ├── following_notification_dto.g.dart │ │ │ ├── fuzzy_date_dto.dart │ │ │ ├── fuzzy_date_dto.freezed.dart │ │ │ ├── fuzzy_date_dto.g.dart │ │ │ ├── fuzzy_date_input_dto.dart │ │ │ ├── fuzzy_date_input_dto.freezed.dart │ │ │ ├── fuzzy_date_input_dto.g.dart │ │ │ ├── github_released_dto.dart │ │ │ ├── github_released_dto.freezed.dart │ │ │ ├── github_released_dto.g.dart │ │ │ ├── github_user_dto.dart │ │ │ ├── github_user_dto.freezed.dart │ │ │ ├── github_user_dto.g.dart │ │ │ ├── likeable_type.dart │ │ │ ├── likeable_type.g.dart │ │ │ ├── list_activity_dto.dart │ │ │ ├── list_activity_dto.freezed.dart │ │ │ ├── list_activity_dto.g.dart │ │ │ ├── media_connection.dart │ │ │ ├── media_connection.freezed.dart │ │ │ ├── media_connection.g.dart │ │ │ ├── media_cover_image_dto.dart │ │ │ ├── media_cover_image_dto.freezed.dart │ │ │ ├── media_cover_image_dto.g.dart │ │ │ ├── media_data_change_notification_dto.dart │ │ │ ├── media_data_change_notification_dto.freezed.dart │ │ │ ├── media_data_change_notification_dto.g.dart │ │ │ ├── media_deletion_notification_dto.dart │ │ │ ├── media_deletion_notification_dto.freezed.dart │ │ │ ├── media_deletion_notification_dto.g.dart │ │ │ ├── media_dto.dart │ │ │ ├── media_dto.freezed.dart │ │ │ ├── media_dto.g.dart │ │ │ ├── media_edge.dart │ │ │ ├── media_edge.freezed.dart │ │ │ ├── media_edge.g.dart │ │ │ ├── media_external_links_dto.dart │ │ │ ├── media_external_links_dto.freezed.dart │ │ │ ├── media_external_links_dto.g.dart │ │ │ ├── media_list_dto.dart │ │ │ ├── media_list_dto.freezed.dart │ │ │ ├── media_list_dto.g.dart │ │ │ ├── media_list_option_dto.dart │ │ │ ├── media_list_option_dto.freezed.dart │ │ │ ├── media_list_option_dto.g.dart │ │ │ ├── media_merge_notification_dto.dart │ │ │ ├── media_merge_notification_dto.freezed.dart │ │ │ ├── media_merge_notification_dto.g.dart │ │ │ ├── media_tag_dto.dart │ │ │ ├── media_tag_dto.freezed.dart │ │ │ ├── media_tag_dto.g.dart │ │ │ ├── nodes_dto.dart │ │ │ ├── nodes_dto.freezed.dart │ │ │ ├── nodes_dto.g.dart │ │ │ ├── notification.dart │ │ │ ├── page_info.dart │ │ │ ├── page_info.freezed.dart │ │ │ ├── page_info.g.dart │ │ │ ├── related_media_addition_notification_dto.dart │ │ │ ├── related_media_addition_notification_dto.freezed.dart │ │ │ ├── related_media_addition_notification_dto.g.dart │ │ │ ├── search_request.dart │ │ │ ├── search_request.freezed.dart │ │ │ ├── search_title.dart │ │ │ ├── search_title.freezed.dart │ │ │ ├── search_title.g.dart │ │ │ ├── source_dto.dart │ │ │ ├── source_dto.freezed.dart │ │ │ ├── source_dto.g.dart │ │ │ ├── staff_connection.dart │ │ │ ├── staff_connection.freezed.dart │ │ │ ├── staff_connection.g.dart │ │ │ ├── staff_dto.dart │ │ │ ├── staff_dto.freezed.dart │ │ │ ├── staff_dto.g.dart │ │ │ ├── staff_edge.dart │ │ │ ├── staff_edge.freezed.dart │ │ │ ├── staff_edge.g.dart │ │ │ ├── staff_image_dto.dart │ │ │ ├── staff_image_dto.freezed.dart │ │ │ ├── staff_image_dto.g.dart │ │ │ ├── studio_connection.dart │ │ │ ├── studio_connection.freezed.dart │ │ │ ├── studio_connection.g.dart │ │ │ ├── studio_dto.dart │ │ │ ├── studio_dto.freezed.dart │ │ │ ├── studio_dto.g.dart │ │ │ ├── text_activity_dto.dart │ │ │ ├── text_activity_dto.freezed.dart │ │ │ ├── text_activity_dto.g.dart │ │ │ ├── thread_dto.dart │ │ │ ├── thread_dto.freezed.dart │ │ │ ├── thread_dto.g.dart │ │ │ ├── track_dto.dart │ │ │ ├── track_dto.freezed.dart │ │ │ ├── track_dto.g.dart │ │ │ ├── trailer_dto.dart │ │ │ ├── trailer_dto.freezed.dart │ │ │ ├── trailer_dto.g.dart │ │ │ ├── user_country_statics_dto.dart │ │ │ ├── user_country_statics_dto.freezed.dart │ │ │ ├── user_country_statics_dto.g.dart │ │ │ ├── user_dto.dart │ │ │ ├── user_dto.freezed.dart │ │ │ ├── user_dto.g.dart │ │ │ ├── user_favourites_dto.dart │ │ │ ├── user_format_statics_dto.dart │ │ │ ├── user_format_statics_dto.freezed.dart │ │ │ ├── user_format_statics_dto.g.dart │ │ │ ├── user_genres_statics_dto.dart │ │ │ ├── user_genres_statics_dto.freezed.dart │ │ │ ├── user_genres_statics_dto.g.dart │ │ │ ├── user_length_statics_dto.dart │ │ │ ├── user_length_statics_dto.freezed.dart │ │ │ ├── user_length_statics_dto.g.dart │ │ │ ├── user_options.dart │ │ │ ├── user_options.freezed.dart │ │ │ ├── user_options.g.dart │ │ │ ├── user_release_year_statics_dto.dart │ │ │ ├── user_release_year_statics_dto.freezed.dart │ │ │ ├── user_release_year_statics_dto.g.dart │ │ │ ├── user_score_statics_dto.dart │ │ │ ├── user_score_statics_dto.freezed.dart │ │ │ ├── user_score_statics_dto.g.dart │ │ │ ├── user_staff_statics_dto.dart │ │ │ ├── user_staff_statics_dto.freezed.dart │ │ │ ├── user_staff_statics_dto.g.dart │ │ │ ├── user_statistics_dto.dart │ │ │ ├── user_statistics_dto.freezed.dart │ │ │ ├── user_statistics_dto.g.dart │ │ │ ├── user_status_statics_dto.dart │ │ │ ├── user_status_statics_dto.freezed.dart │ │ │ ├── user_status_statics_dto.g.dart │ │ │ ├── user_studio_statics_dto.dart │ │ │ ├── user_studio_statics_dto.freezed.dart │ │ │ ├── user_studio_statics_dto.g.dart │ │ │ ├── user_tag_statics_dto.dart │ │ │ ├── user_tag_statics_dto.freezed.dart │ │ │ ├── user_tag_statics_dto.g.dart │ │ │ ├── user_voice_actor_statics_dto.dart │ │ │ ├── user_voice_actor_statics_dto.freezed.dart │ │ │ └── user_voice_actor_statics_dto.g.dart │ │ ├── util │ │ │ ├── anilist_page_util.dart │ │ │ ├── date_time_util.dart │ │ │ └── http_status_util.dart │ │ └── web_source │ │ │ └── util.dart │ ├── notification │ │ ├── notification_channel.dart │ │ └── notification_util.dart │ ├── paging │ │ ├── page_loading_state.dart │ │ ├── paging_bloc.dart │ │ ├── paging_content_widget.dart │ │ └── refresh_paging_bloc.dart │ ├── platform │ │ ├── auth_event_channel.dart │ │ ├── di │ │ │ └── auth_event_channel_module.dart │ │ └── platform_channel.dart │ ├── shared_preference │ │ ├── di │ │ │ └── shared_preferences_module.dart │ │ └── user_data_preferences.dart │ └── usecase │ │ ├── get_media_list_item_use_case.dart │ │ └── media_mark_watched_use_case.dart ├── feature │ ├── activity_replies │ │ ├── activity_replies.dart │ │ └── bloc │ │ │ ├── activity_replies_bloc.dart │ │ │ ├── activity_replies_state.dart │ │ │ └── activity_replies_state.freezed.dart │ ├── airing_schedule │ │ ├── airing_schedule.dart │ │ ├── airing_schedule_of_day │ │ │ ├── airing_schedule_of_day.dart │ │ │ ├── airing_schedule_of_day_bloc.dart │ │ │ ├── schedule_page_key.dart │ │ │ └── schedule_page_state.dart │ │ ├── movie_schedule_time_line │ │ │ ├── month_schedule_category.dart │ │ │ ├── movie_schedule_time_line.dart │ │ │ └── movie_schedule_time_line_bloc.dart │ │ └── schedule_category.dart │ ├── aniflow_home │ │ ├── ani_flow_home.dart │ │ ├── ani_flow_router_delegate.dart │ │ ├── aniflow_home_bloc.dart │ │ ├── aniflow_home_state.dart │ │ ├── aniflow_home_state.freezed.dart │ │ └── top_level_navigation.dart │ ├── auth │ │ ├── auth_dialog.dart │ │ └── bloc │ │ │ ├── auth_bloc.dart │ │ │ ├── auth_ui_state.dart │ │ │ └── auth_ui_state.freezed.dart │ ├── birthday_characters_page │ │ ├── birthday_character_page_bloc.dart │ │ └── birthday_characters_page.dart │ ├── character_page │ │ ├── bloc │ │ │ ├── character_page_bloc.dart │ │ │ ├── character_page_model.dart │ │ │ ├── character_page_model.freezed.dart │ │ │ └── character_paging_bloc.dart │ │ └── character_page.dart │ ├── detail_character │ │ ├── bloc │ │ │ ├── detail_character_bloc.dart │ │ │ ├── detail_character_state.dart │ │ │ └── detail_character_state.freezed.dart │ │ └── detail_character.dart │ ├── detail_media │ │ ├── bloc │ │ │ ├── detail_media_bloc.dart │ │ │ ├── detail_media_ui_state.dart │ │ │ └── detail_media_ui_state.freezed.dart │ │ ├── build_media_basic_info.dart │ │ ├── build_related_info.dart │ │ ├── build_watch_next_episode_area.dart │ │ └── detail_media.dart │ ├── detail_staff │ │ ├── bloc │ │ │ ├── detail_staff_bloc.dart │ │ │ ├── detail_staff_state.dart │ │ │ ├── detail_staff_state.freezed.dart │ │ │ └── voice_actor_contents_paging_bloc.dart │ │ └── detail_staff.dart │ ├── detail_studio │ │ ├── bloc │ │ │ ├── detail_studio_bloc.dart │ │ │ ├── detail_studio_state.dart │ │ │ ├── detail_studio_state.freezed.dart │ │ │ └── studio_contents_paging_bloc.dart │ │ └── detail_studio.dart │ ├── discover │ │ ├── airing_schedule │ │ │ ├── dummy_schedule_category_data.dart │ │ │ ├── today_airing_schedule.dart │ │ │ ├── today_airing_schedule_bloc.dart │ │ │ ├── today_airing_schedule_state.dart │ │ │ └── today_airing_schedule_state.freezed.dart │ │ ├── birthday_characters │ │ │ ├── birthday_character.dart │ │ │ ├── birthday_characters_bloc.dart │ │ │ ├── birthday_characters_state.dart │ │ │ ├── birthday_characters_state.freezed.dart │ │ │ └── dummy_birthday_character_data.dart │ │ ├── discover.dart │ │ ├── discover_bloc.dart │ │ ├── discover_ui_state.dart │ │ ├── discover_ui_state.freezed.dart │ │ ├── media_category_preview │ │ │ ├── media_category_preview.dart │ │ │ ├── media_category_preview_bloc.dart │ │ │ ├── media_category_preview_state.dart │ │ │ └── media_category_preview_state.freezed.dart │ │ ├── next_to_watch │ │ │ ├── next_to_watch.dart │ │ │ ├── next_to_watch_bloc.dart │ │ │ ├── next_to_watch_state.dart │ │ │ └── next_to_watch_state.freezed.dart │ │ └── recent_movies │ │ │ ├── dummy_movies_data.dart │ │ │ ├── recent_movies.dart │ │ │ ├── recent_movies_bloc.dart │ │ │ ├── recent_movies_state.dart │ │ │ └── recent_movies_state.freezed.dart │ ├── image_preview │ │ ├── image_preview.dart │ │ ├── preview_source.dart │ │ ├── preview_source.freezed.dart │ │ ├── preview_source.g.dart │ │ └── util │ │ │ └── preview_source_extensions.dart │ ├── media_list_update_page │ │ ├── bloc │ │ │ ├── media_list_update_bloc.dart │ │ │ ├── media_list_update_page_state.dart │ │ │ └── media_list_update_page_state.freezed.dart │ │ ├── media_list_modify_result.dart │ │ └── media_list_update_page.dart │ ├── media_page │ │ ├── bloc │ │ │ └── media_page_bloc.dart │ │ └── media_page.dart │ ├── media_track │ │ ├── bloc │ │ │ ├── track_bloc.dart │ │ │ ├── track_ui_state.dart │ │ │ └── track_ui_state.freezed.dart │ │ └── media_track.dart │ ├── notification │ │ ├── bloc │ │ │ ├── notification_bloc.dart │ │ │ ├── notification_paging_bloc.dart │ │ │ ├── notification_state.dart │ │ │ └── notification_state.freezed.dart │ │ └── notification.dart │ ├── profile │ │ ├── profile.dart │ │ ├── profile_bloc.dart │ │ ├── profile_state.dart │ │ ├── profile_state.freezed.dart │ │ ├── profile_tab_category.dart │ │ ├── sub_activity │ │ │ ├── profile_activity_overview.dart │ │ │ └── user_activity_paging_bloc.dart │ │ ├── sub_favorite │ │ │ ├── profile_favorite.dart │ │ │ ├── profile_favorite_bloc.dart │ │ │ ├── profile_favorite_state.dart │ │ │ └── profile_favorite_state.freezed.dart │ │ ├── sub_media_list │ │ │ ├── profile_media_list.dart │ │ │ ├── profile_media_list_bloc.dart │ │ │ ├── profile_media_list_state.dart │ │ │ └── profile_media_list_state.freezed.dart │ │ ├── sub_stats │ │ │ ├── bloc │ │ │ │ ├── stats_bloc.dart │ │ │ │ ├── stats_state.dart │ │ │ │ └── stats_state.freezed.dart │ │ │ └── stats.dart │ │ └── title_with_items_builder.dart │ ├── search │ │ ├── bloc │ │ │ ├── search_bloc.dart │ │ │ ├── search_state.dart │ │ │ ├── search_state.freezed.dart │ │ │ └── search_type.dart │ │ ├── paging │ │ │ ├── character_search_result_paging_bloc.dart │ │ │ ├── character_search_result_paging_content.dart │ │ │ ├── media_search_result_paging_bloc.dart │ │ │ ├── media_search_result_paging_content.dart │ │ │ ├── staff_search_result_paging_bloc.dart │ │ │ ├── staff_search_result_paging_content.dart │ │ │ ├── studio_search_result_paging_bloc.dart │ │ │ ├── studio_search_result_paging_content.dart │ │ │ ├── user_search_result_paging_bloc.dart │ │ │ └── user_search_result_paging_content.dart │ │ └── search_page.dart │ ├── settings │ │ ├── check_for_update │ │ │ ├── check_for_update.dart │ │ │ ├── check_for_update_bloc.dart │ │ │ ├── check_for_update_state.dart │ │ │ └── check_for_update_state.freezed.dart │ │ ├── github_link │ │ │ ├── github_link.dart │ │ │ └── github_link_bloc.dart │ │ ├── list_settings_dialog.dart │ │ ├── settings.dart │ │ ├── settings_bloc.dart │ │ ├── settings_category.dart │ │ ├── settings_state.dart │ │ └── settings_state.freezed.dart │ ├── social │ │ ├── activity │ │ │ ├── activity.dart │ │ │ └── bloc │ │ │ │ ├── activity_bloc.dart │ │ │ │ ├── activity_item_bloc.dart │ │ │ │ ├── activity_paging_bloc.dart │ │ │ │ ├── activity_state.dart │ │ │ │ └── activity_state.freezed.dart │ │ └── social.dart │ ├── staff_page │ │ ├── bloc │ │ │ └── staff_page_bloc.dart │ │ └── staff_page.dart │ └── toturial │ │ └── gesture_tutorial.dart ├── firebase_options.dart └── main.dart ├── platform_downloader ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── com │ │ │ └── andannn │ │ │ └── downloader │ │ │ └── platform_downloader │ │ │ ├── Constants.kt │ │ │ ├── Downloader.kt │ │ │ └── PlatformDownloaderPlugin.kt │ │ └── test │ │ └── kotlin │ │ └── com │ │ └── andannn │ │ └── downloader │ │ └── platform_downloader │ │ └── PlatformDownloaderPluginTest.kt ├── example │ ├── .gitignore │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── andannn │ │ │ │ │ │ └── downloader │ │ │ │ │ │ └── platform_downloader_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ └── PlatformDownloaderPlugin.swift │ └── platform_downloader.podspec ├── lib │ ├── platform_downloader.dart │ ├── platform_downloader_method_channel.dart │ └── platform_downloader_platform_interface.dart ├── pubspec.yaml └── test │ └── platform_downloader_test.dart ├── platform_notification ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── build.gradle │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ │ └── com │ │ │ └── andannn │ │ │ └── aniflow │ │ │ └── notification │ │ │ └── platform_notification │ │ │ ├── NotificationHelper.kt │ │ │ └── PlatformNotificationPlugin.kt │ │ └── test │ │ └── kotlin │ │ └── com │ │ └── andannn │ │ └── aniflow │ │ └── notification │ │ └── platform_notification │ │ └── PlatformNotificationPluginTest.kt ├── example │ ├── .gitignore │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── andannn │ │ │ │ │ │ └── aniflow │ │ │ │ │ │ └── notification │ │ │ │ │ │ └── platform_notification_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ └── PlatformNotificationPlugin.swift │ └── platform_notification.podspec ├── lib │ ├── platform_notification.dart │ ├── platform_notification_channel_model.dart │ ├── platform_notification_channel_model.freezed.dart │ ├── platform_notification_channel_model.g.dart │ ├── platform_notification_method_channel.dart │ ├── platform_notification_model.dart │ ├── platform_notification_model.freezed.dart │ ├── platform_notification_model.g.dart │ └── platform_notification_platform_interface.dart └── pubspec.yaml ├── pubspec.lock ├── pubspec.yaml ├── screen_shots ├── anime.png ├── character.png ├── home_page.png ├── profile.jpeg ├── track_list.png └── voice_actor.png ├── test ├── core │ ├── common │ │ ├── common_test.dart │ │ └── util │ │ │ └── app_version_util_test.dart │ ├── data │ │ ├── auth_repository_test.dart │ │ ├── github_repository_test.dart │ │ ├── mocks │ │ │ ├── media_information_repository_mock.dart │ │ │ ├── mock_favorite_repository.dart │ │ │ ├── mock_github_data_source.dart │ │ │ ├── mock_github_release_dao.dart │ │ │ ├── mock_media_list_repository.dart │ │ │ ├── mock_remote_config_manager.dart │ │ │ └── search_repository_mock.dart │ │ └── user_data_repository_test.dart │ ├── database │ │ ├── dao │ │ │ ├── activity_dao_test.dart │ │ │ ├── airing_schedule_dao_test.dart │ │ │ ├── character_dao_test.dart │ │ │ ├── episode_dao_test.dart │ │ │ ├── favorite_dao_test.dart │ │ │ ├── github_release_dao_test.dart │ │ │ ├── media_dao_test.dart │ │ │ ├── media_list_dao_test.dart │ │ │ ├── search_result_cache_dao_test.dart │ │ │ ├── staff_dao_test.dart │ │ │ ├── studio_dao_test.dart │ │ │ └── user_dao_test.dart │ │ ├── generated_migrations │ │ │ ├── schema.dart │ │ │ ├── schema_v1.dart │ │ │ ├── schema_v10.dart │ │ │ ├── schema_v11.dart │ │ │ ├── schema_v2.dart │ │ │ ├── schema_v3.dart │ │ │ ├── schema_v4.dart │ │ │ ├── schema_v5.dart │ │ │ ├── schema_v6.dart │ │ │ ├── schema_v7.dart │ │ │ ├── schema_v8.dart │ │ │ └── schema_v9.dart │ │ └── migraion_test.dart │ ├── shared_preference │ │ └── user_data_preferences_test.dart │ └── usecase │ │ └── get_media_list_item_use_case_test.dart └── feature │ ├── airing_schedule │ └── bloc │ │ └── airing_schedule_bloc_test.dart │ ├── anime_search │ └── bloc │ │ └── search_bloc_test.dart │ ├── character_page │ └── bloc │ │ └── character_page_bloc_test.dart │ └── detail_character │ └── bloc │ └── detail_character_bloc_test.dart └── test_driver ├── integration_test.dart └── run_flutter_drive.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint_check_and_run_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/.github/workflows/lint_check_and_run_test.yml -------------------------------------------------------------------------------- /.github/workflows/release_and_upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/.github/workflows/release_and_upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/debug/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/debug/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/debug/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/profile/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/google-services.json -------------------------------------------------------------------------------- /android/app/src/profile/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/profile/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/profile/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/profile/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/profile/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/profile/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/profile/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/profile/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/app/src/profile/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/image/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/image/ic_launcher-playstore.png -------------------------------------------------------------------------------- /assets/image/ic_youtube_xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/image/ic_youtube_xml -------------------------------------------------------------------------------- /assets/image/new_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/image/new_badge.png -------------------------------------------------------------------------------- /assets/json/detail_media_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/json/detail_media_data.json -------------------------------------------------------------------------------- /assets/json/media_list_data_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/json/media_list_data_1.json -------------------------------------------------------------------------------- /assets/json/media_list_data_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/json/media_list_data_2.json -------------------------------------------------------------------------------- /assets/json/remote_config_defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/json/remote_config_defaults.json -------------------------------------------------------------------------------- /assets/video/long_press_gesture_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/video/long_press_gesture_video.mp4 -------------------------------------------------------------------------------- /assets/video/sliding_gesture_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/assets/video/sliding_gesture_video.mp4 -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | - drift: true -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/firebase.json -------------------------------------------------------------------------------- /firepit-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/firepit-log.txt -------------------------------------------------------------------------------- /flutter_native_splash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/flutter_native_splash.yaml -------------------------------------------------------------------------------- /integration_test/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/integration_test/integration_test.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /ios/build/.last_build_id: -------------------------------------------------------------------------------- 1 | a796a1d71ae9080c1eb6f9460ee53ff5 -------------------------------------------------------------------------------- /ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/app/app_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/app_bloc.dart -------------------------------------------------------------------------------- /lib/app/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/app_state.dart -------------------------------------------------------------------------------- /lib/app/app_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/app_state.freezed.dart -------------------------------------------------------------------------------- /lib/app/di/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/di/env.dart -------------------------------------------------------------------------------- /lib/app/di/get_it_di.config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/di/get_it_di.config.dart -------------------------------------------------------------------------------- /lib/app/di/get_it_di.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/di/get_it_di.dart -------------------------------------------------------------------------------- /lib/app/di/get_it_scope.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/di/get_it_scope.dart -------------------------------------------------------------------------------- /lib/app/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/app/l10n/app_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/l10n/app_ja.arb -------------------------------------------------------------------------------- /lib/app/l10n/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/l10n/app_localizations.dart -------------------------------------------------------------------------------- /lib/app/l10n/app_localizations_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/l10n/app_localizations_en.dart -------------------------------------------------------------------------------- /lib/app/l10n/app_localizations_ja.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/l10n/app_localizations_ja.dart -------------------------------------------------------------------------------- /lib/app/l10n/app_localizations_zh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/l10n/app_localizations_zh.dart -------------------------------------------------------------------------------- /lib/app/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/l10n/app_zh.arb -------------------------------------------------------------------------------- /lib/app/routing/model/ani_flow_route_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/routing/model/ani_flow_route_path.dart -------------------------------------------------------------------------------- /lib/app/routing/model/ani_flow_route_path.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/routing/model/ani_flow_route_path.freezed.dart -------------------------------------------------------------------------------- /lib/app/routing/model/ani_flow_route_path.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/routing/model/ani_flow_route_path.g.dart -------------------------------------------------------------------------------- /lib/app/routing/root_router_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/routing/root_router_delegate.dart -------------------------------------------------------------------------------- /lib/app/routing/root_router_info_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/routing/root_router_info_parser.dart -------------------------------------------------------------------------------- /lib/app/routing/util/ani_flow_page_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/app/routing/util/ani_flow_page_generator.dart -------------------------------------------------------------------------------- /lib/callback_dispatcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/callback_dispatcher.dart -------------------------------------------------------------------------------- /lib/core/background_task/di/workmanager_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/background_task/di/workmanager_module.dart -------------------------------------------------------------------------------- /lib/core/background_task/executor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/background_task/executor.dart -------------------------------------------------------------------------------- /lib/core/background_task/task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/background_task/task.dart -------------------------------------------------------------------------------- /lib/core/background_task/task_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/background_task/task_manager.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/activity_filter_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/activity_filter_type.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/activity_filter_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/activity_filter_type.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/activity_scope_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/activity_scope_category.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/activity_scope_category.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/activity_scope_category.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/activity_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/activity_type.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/activity_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/activity_type.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/ani_list_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/ani_list_settings.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/ani_list_settings.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/ani_list_settings.freezed.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/ani_list_settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/ani_list_settings.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/anime_season.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/anime_season.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/anime_season.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/anime_season.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/anime_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/anime_source.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/anime_source.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/anime_source.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/character_role.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/character_role.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/character_role.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/character_role.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/favorite_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/favorite_category.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/home_sector_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/home_sector_category.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/home_sector_category.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/home_sector_category.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_category.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_external_link_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_external_link_type.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_external_link_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_external_link_type.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_format.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_format.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_format.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_list_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_list_status.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_list_status.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_list_status.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_relation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_relation.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_relation.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_relation.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_sort.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_sort.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_sort.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_sort.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_status.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_status.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_status.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_type.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/media_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/media_type.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/notification_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/notification_type.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/refresh_time_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/refresh_time_key.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/refresh_time_key.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/refresh_time_key.freezed.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/refresh_time_key.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/refresh_time_key.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/staff_language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/staff_language.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/staff_language.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/staff_language.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/track_list_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/track_list_filter.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/track_list_filter.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/track_list_filter.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/user_statics_sort.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/user_statics_sort.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/user_statics_sort.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/user_statics_sort.g.dart -------------------------------------------------------------------------------- /lib/core/common/definitions/user_stats_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/definitions/user_stats_type.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/about_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/about_dialog.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/dialog_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/dialog_handler.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/dialog_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/dialog_type.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/dialog_type.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/dialog_type.freezed.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/dialog_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/dialog_type.g.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/downloading_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/downloading_dialog.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/message_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/message_dialog.dart -------------------------------------------------------------------------------- /lib/core/common/dialog/tutorial_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/dialog/tutorial_dialog.dart -------------------------------------------------------------------------------- /lib/core/common/message/snack_bar_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/message/snack_bar_message.dart -------------------------------------------------------------------------------- /lib/core/common/message/snack_bar_message_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/message/snack_bar_message_mixin.dart -------------------------------------------------------------------------------- /lib/core/common/setting/about.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/about.dart -------------------------------------------------------------------------------- /lib/core/common/setting/check_app_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/check_app_update.dart -------------------------------------------------------------------------------- /lib/core/common/setting/display_adult_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/display_adult_content.dart -------------------------------------------------------------------------------- /lib/core/common/setting/github_link_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/github_link_setting.dart -------------------------------------------------------------------------------- /lib/core/common/setting/in_app_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/in_app_player.dart -------------------------------------------------------------------------------- /lib/core/common/setting/score_format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/score_format.dart -------------------------------------------------------------------------------- /lib/core/common/setting/score_format.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/score_format.g.dart -------------------------------------------------------------------------------- /lib/core/common/setting/setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/setting.dart -------------------------------------------------------------------------------- /lib/core/common/setting/theme_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/theme_setting.dart -------------------------------------------------------------------------------- /lib/core/common/setting/theme_setting.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/theme_setting.g.dart -------------------------------------------------------------------------------- /lib/core/common/setting/tutorial_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/tutorial_setting.dart -------------------------------------------------------------------------------- /lib/core/common/setting/user_staff_name_language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/user_staff_name_language.dart -------------------------------------------------------------------------------- /lib/core/common/setting/user_staff_name_language.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/user_staff_name_language.g.dart -------------------------------------------------------------------------------- /lib/core/common/setting/user_title_language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/user_title_language.dart -------------------------------------------------------------------------------- /lib/core/common/setting/user_title_language.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/setting/user_title_language.g.dart -------------------------------------------------------------------------------- /lib/core/common/state_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/state_stream.dart -------------------------------------------------------------------------------- /lib/core/common/util/anime_season_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/anime_season_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/app_version_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/app_version_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/bloc_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/bloc_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/change_notifier_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/change_notifier_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/collection_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/collection_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/color_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/color_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/connectivity_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/connectivity_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/dao_change_notifier_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/dao_change_notifier_mixin.dart -------------------------------------------------------------------------------- /lib/core/common/util/description_item_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/description_item_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/error_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/error_handler.dart -------------------------------------------------------------------------------- /lib/core/common/util/global_static_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/global_static_constants.dart -------------------------------------------------------------------------------- /lib/core/common/util/load_page_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/load_page_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/loading_state_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/loading_state_mixin.dart -------------------------------------------------------------------------------- /lib/core/common/util/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/logger.dart -------------------------------------------------------------------------------- /lib/core/common/util/network_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/network_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/scheme_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/scheme_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/screen_size_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/screen_size_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/stream_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/stream_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/string_resource_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/string_resource_util.dart -------------------------------------------------------------------------------- /lib/core/common/util/time_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/common/util/time_util.dart -------------------------------------------------------------------------------- /lib/core/data/activity_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/activity_repository.dart -------------------------------------------------------------------------------- /lib/core/data/app_update_dialog_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/app_update_dialog_util.dart -------------------------------------------------------------------------------- /lib/core/data/auth_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/auth_repository.dart -------------------------------------------------------------------------------- /lib/core/data/character_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/character_repository.dart -------------------------------------------------------------------------------- /lib/core/data/favorite_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/favorite_repository.dart -------------------------------------------------------------------------------- /lib/core/data/github_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/github_repository.dart -------------------------------------------------------------------------------- /lib/core/data/load_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/load_result.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/activity_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/activity_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/activity_reply_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/activity_reply_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/airing_schedule_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/airing_schedule_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/character_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/character_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/github_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/github_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/media_external_link_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/media_external_link_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/media_list_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/media_list_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/media_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/media_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/media_relation_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/media_relation_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/staff_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/staff_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/studio_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/studio_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/mappers/user_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mappers/user_mapper.dart -------------------------------------------------------------------------------- /lib/core/data/media_information_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/media_information_repository.dart -------------------------------------------------------------------------------- /lib/core/data/media_list_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/media_list_repository.dart -------------------------------------------------------------------------------- /lib/core/data/message_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/message_repository.dart -------------------------------------------------------------------------------- /lib/core/data/mocks/mock_auth_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mocks/mock_auth_repository.dart -------------------------------------------------------------------------------- /lib/core/data/mocks/mock_favorite_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mocks/mock_favorite_repository.dart -------------------------------------------------------------------------------- /lib/core/data/mocks/mock_media_information_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mocks/mock_media_information_repository.dart -------------------------------------------------------------------------------- /lib/core/data/mocks/mock_media_list_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mocks/mock_media_list_repository.dart -------------------------------------------------------------------------------- /lib/core/data/mocks/mock_message_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mocks/mock_message_repository.dart -------------------------------------------------------------------------------- /lib/core/data/mocks/mock_user_data_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/mocks/mock_user_data_repository.dart -------------------------------------------------------------------------------- /lib/core/data/model/activity_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/activity_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/activity_reply_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/activity_reply_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/activity_reply_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/activity_reply_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/airing_schedule_and_anime_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/airing_schedule_and_anime_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/airing_schedule_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/airing_schedule_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/airing_schedule_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/airing_schedule_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/anime_list_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/anime_list_item_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/anime_list_item_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/anime_list_item_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/character_and_voice_actor_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/character_and_voice_actor_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/character_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/character_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/character_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/character_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/episode_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/episode_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/episode_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/episode_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/episode_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/episode_model.g.dart -------------------------------------------------------------------------------- /lib/core/data/model/favorite_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/favorite_item_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/github_user_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/github_user_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/github_user_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/github_user_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/github_user_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/github_user_model.g.dart -------------------------------------------------------------------------------- /lib/core/data/model/home_sector_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/home_sector_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_cover_image_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_cover_image_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_cover_image_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_cover_image_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_external_link_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_external_link_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_external_link_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_external_link_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_external_link_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_external_link_model.g.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_relation_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_relation_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_tag_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_tag_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_tag_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_tag_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_title_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_title_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_title_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_title_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_title_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_title_model.g.dart -------------------------------------------------------------------------------- /lib/core/data/model/media_with_list_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/media_with_list_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/notification_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/notification_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/release_package_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/release_package_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/release_package_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/release_package_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/search_result_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/search_result_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/search_result_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/search_result_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/search_result_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/search_result_model.g.dart -------------------------------------------------------------------------------- /lib/core/data/model/shortcut/activity_status_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/shortcut/activity_status_record.dart -------------------------------------------------------------------------------- /lib/core/data/model/sorted_group_media_list_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/sorted_group_media_list_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/staff_and_role_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/staff_and_role_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/staff_character_and_media_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/staff_character_and_media_connection.dart -------------------------------------------------------------------------------- /lib/core/data/model/staff_character_name_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/staff_character_name_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/staff_character_name_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/staff_character_name_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/staff_character_name_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/staff_character_name_model.g.dart -------------------------------------------------------------------------------- /lib/core/data/model/staff_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/staff_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/staff_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/staff_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/studio_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/studio_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/studio_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/studio_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/subject_with_episodes_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/subject_with_episodes_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/subject_with_episodes_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/subject_with_episodes_model.g.dart -------------------------------------------------------------------------------- /lib/core/data/model/trailer_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/trailer_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/trailer_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/trailer_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/user_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/user_data_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/user_data_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/user_data_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/user_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/user_model.dart -------------------------------------------------------------------------------- /lib/core/data/model/user_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/user_model.freezed.dart -------------------------------------------------------------------------------- /lib/core/data/model/user_statistics_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/model/user_statistics_model.dart -------------------------------------------------------------------------------- /lib/core/data/notification_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/notification_repository.dart -------------------------------------------------------------------------------- /lib/core/data/search_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/search_repository.dart -------------------------------------------------------------------------------- /lib/core/data/user_data_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/user_data_repository.dart -------------------------------------------------------------------------------- /lib/core/data/user_info_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/user_info_repository.dart -------------------------------------------------------------------------------- /lib/core/data/user_statistics_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/data/user_statistics_repository.dart -------------------------------------------------------------------------------- /lib/core/database/aniflow_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/aniflow_database.dart -------------------------------------------------------------------------------- /lib/core/database/aniflow_database.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/aniflow_database.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/activity_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/activity_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/activity_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/activity_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/airing_schedules_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/airing_schedules_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/airing_schedules_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/airing_schedules_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/character_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/character_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/character_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/character_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/episode_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/episode_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/episode_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/episode_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/favorite_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/favorite_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/favorite_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/favorite_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/github_release_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/github_release_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/github_release_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/github_release_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/media_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/media_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/media_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/media_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/media_list_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/media_list_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/media_list_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/media_list_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/search_result_cache_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/search_result_cache_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/search_result_cache_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/search_result_cache_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/staff_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/staff_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/staff_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/staff_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/studio_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/studio_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/studio_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/studio_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/dao/user_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/user_dao.dart -------------------------------------------------------------------------------- /lib/core/database/dao/user_dao.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/dao/user_dao.g.dart -------------------------------------------------------------------------------- /lib/core/database/di/database_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/di/database_module.dart -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v1.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v10.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v11.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v2.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v3.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v4.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v5.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v6.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v7.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v8.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/drift_schema_v9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/drift_schema_v9.json -------------------------------------------------------------------------------- /lib/core/database/drift_schemas/schema_versions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/drift_schemas/schema_versions.dart -------------------------------------------------------------------------------- /lib/core/database/intercepters/log_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/intercepters/log_interceptor.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/activity_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/activity_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/airing_schedule_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/airing_schedule_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/character_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/character_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/github_data_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/github_data_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/media_external_link_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/media_external_link_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/media_list_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/media_list_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/media_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/media_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/staff_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/staff_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/studio_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/studio_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/mappers/user_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/mappers/user_mapper.dart -------------------------------------------------------------------------------- /lib/core/database/tables/activity_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/activity_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/airing_schedule_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/airing_schedule_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/character_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/character_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/episode_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/episode_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/favorite_info_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/favorite_info_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/media_external_link_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/media_external_link_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/media_list_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/media_list_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/media_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/media_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/released_package_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/released_package_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/search_result_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/search_result_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/staff_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/staff_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/studio_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/studio_table.dart -------------------------------------------------------------------------------- /lib/core/database/tables/user_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/database/tables/user_table.dart -------------------------------------------------------------------------------- /lib/core/design_system/assets/icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/assets/icons.dart -------------------------------------------------------------------------------- /lib/core/design_system/assets/video.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/assets/video.dart -------------------------------------------------------------------------------- /lib/core/design_system/dialog/restart_app_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/dialog/restart_app_dialog.dart -------------------------------------------------------------------------------- /lib/core/design_system/dialog/scoring_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/dialog/scoring_dialog.dart -------------------------------------------------------------------------------- /lib/core/design_system/theme/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/theme/colors.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/activity_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/activity_item_widget.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/af_html_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/af_html_widget.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/af_network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/af_network_image.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/af_toggle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/af_toggle_button.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/airing_media_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/airing_media_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/avatar_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/avatar_icon.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/comming_soon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/comming_soon.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/date_time_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/date_time_button.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/external_link_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/external_link_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/genre_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/genre_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/info_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/info_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/loading_dummy_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/loading_dummy_scaffold.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/loading_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/loading_indicator.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/max_limit_text_filed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/max_limit_text_filed.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/media_cover.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/media_cover.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/media_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/media_list_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/media_preview_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/media_preview_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/media_relation_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/media_relation_widget.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/media_row_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/media_row_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/popup_menu_anchor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/popup_menu_anchor.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/search_anime_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/search_anime_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/staff_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/staff_item.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/trailer_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/trailer_preview.dart -------------------------------------------------------------------------------- /lib/core/design_system/widget/twitter_hashtag_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/design_system/widget/twitter_hashtag_widget.dart -------------------------------------------------------------------------------- /lib/core/firebase/analytics/fa_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/firebase/analytics/fa_event.dart -------------------------------------------------------------------------------- /lib/core/firebase/analytics/fa_user_property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/firebase/analytics/fa_user_property.dart -------------------------------------------------------------------------------- /lib/core/firebase/analytics/firebase_analytics_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/firebase/analytics/firebase_analytics_util.dart -------------------------------------------------------------------------------- /lib/core/firebase/remote_config/remote_config_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/firebase/remote_config/remote_config_manager.dart -------------------------------------------------------------------------------- /lib/core/network/ani_list_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/ani_list_data_source.dart -------------------------------------------------------------------------------- /lib/core/network/api/activity_detail_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/activity_detail_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/activity_like_mution_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/activity_like_mution_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/activity_page_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/activity_page_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/ani_auth_mution_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/ani_auth_mution_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/character_detail_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/character_detail_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/common_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/common_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/media_content_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/media_content_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/media_detail_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/media_detail_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/media_list_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/media_list_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/media_page_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/media_page_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/medias_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/medias_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/notification_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/notification_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/query_anime_staff_page_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/query_anime_staff_page_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/search_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/search_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/staff_detail_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/staff_detail_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/studio_detail_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/studio_detail_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/toggle_favorite_mutation_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/toggle_favorite_mutation_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/user_content_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/user_content_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/user_favorite_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/user_favorite_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/api/user_stats_query_graphql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/api/user_stats_query_graphql.dart -------------------------------------------------------------------------------- /lib/core/network/auth_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/auth_data_source.dart -------------------------------------------------------------------------------- /lib/core/network/di/di_network_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/di/di_network_module.dart -------------------------------------------------------------------------------- /lib/core/network/github_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/github_data_source.dart -------------------------------------------------------------------------------- /lib/core/network/model/activity_like_notification_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/activity_like_notification_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/activity_reply_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/activity_reply_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/activity_reply_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/activity_reply_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/activity_reply_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/activity_reply_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/airing_notification_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/airing_notification_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/airing_notification_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/airing_notification_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/airing_schedule_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/airing_schedule_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/airing_schedule_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/airing_schedule_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/airing_schedule_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/airing_schedule_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/ani_activity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/ani_activity.dart -------------------------------------------------------------------------------- /lib/core/network/model/anime_rank.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/anime_rank.dart -------------------------------------------------------------------------------- /lib/core/network/model/anime_rank.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/anime_rank.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/anime_rank.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/anime_rank.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/bangumi_subject_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/bangumi_subject_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/bangumi_subject_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/bangumi_subject_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/bangumi_subject_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/bangumi_subject_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_connection.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_connection.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_connection.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_connection.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_connection.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_edge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_edge.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_edge.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_edge.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_edge.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_edge.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_image_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_image_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_image_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_image_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/character_image_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/character_image_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/following_notification_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/following_notification_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/following_notification_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/following_notification_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/fuzzy_date_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/fuzzy_date_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/fuzzy_date_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/fuzzy_date_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/fuzzy_date_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/fuzzy_date_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/fuzzy_date_input_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/fuzzy_date_input_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/fuzzy_date_input_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/fuzzy_date_input_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/fuzzy_date_input_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/fuzzy_date_input_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/github_released_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/github_released_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/github_released_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/github_released_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/github_released_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/github_released_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/github_user_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/github_user_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/github_user_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/github_user_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/github_user_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/github_user_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/likeable_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/likeable_type.dart -------------------------------------------------------------------------------- /lib/core/network/model/likeable_type.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/likeable_type.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/list_activity_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/list_activity_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/list_activity_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/list_activity_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/list_activity_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/list_activity_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_connection.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_connection.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_connection.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_connection.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_connection.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_cover_image_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_cover_image_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_cover_image_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_cover_image_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_cover_image_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_cover_image_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_edge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_edge.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_edge.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_edge.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_edge.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_edge.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_external_links_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_external_links_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_external_links_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_external_links_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_list_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_list_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_list_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_list_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_list_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_list_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_list_option_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_list_option_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_list_option_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_list_option_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_list_option_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_list_option_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_merge_notification_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_merge_notification_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_merge_notification_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_merge_notification_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_tag_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_tag_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_tag_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_tag_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/media_tag_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/media_tag_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/nodes_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/nodes_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/nodes_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/nodes_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/nodes_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/nodes_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/notification.dart -------------------------------------------------------------------------------- /lib/core/network/model/page_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/page_info.dart -------------------------------------------------------------------------------- /lib/core/network/model/page_info.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/page_info.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/page_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/page_info.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/search_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/search_request.dart -------------------------------------------------------------------------------- /lib/core/network/model/search_request.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/search_request.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/search_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/search_title.dart -------------------------------------------------------------------------------- /lib/core/network/model/search_title.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/search_title.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/search_title.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/search_title.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/source_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/source_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/source_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/source_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/source_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/source_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_connection.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_connection.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_connection.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_connection.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_connection.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_edge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_edge.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_edge.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_edge.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_edge.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_edge.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_image_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_image_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_image_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_image_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/staff_image_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/staff_image_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/studio_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/studio_connection.dart -------------------------------------------------------------------------------- /lib/core/network/model/studio_connection.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/studio_connection.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/studio_connection.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/studio_connection.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/studio_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/studio_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/studio_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/studio_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/studio_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/studio_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/text_activity_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/text_activity_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/text_activity_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/text_activity_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/text_activity_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/text_activity_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/thread_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/thread_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/thread_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/thread_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/thread_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/thread_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/track_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/track_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/track_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/track_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/track_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/track_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/trailer_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/trailer_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/trailer_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/trailer_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/trailer_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/trailer_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_country_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_country_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_country_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_country_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_favourites_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_favourites_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_format_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_format_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_format_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_format_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_genres_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_genres_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_genres_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_genres_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_length_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_length_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_length_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_length_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_options.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_options.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_options.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_options.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_options.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_release_year_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_release_year_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_score_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_score_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_score_statics_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_score_statics_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_score_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_score_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_staff_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_staff_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_staff_statics_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_staff_statics_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_staff_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_staff_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_statistics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_statistics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_statistics_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_statistics_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_statistics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_statistics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_status_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_status_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_status_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_status_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_studio_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_studio_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_studio_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_studio_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_tag_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_tag_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_tag_statics_dto.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_tag_statics_dto.freezed.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_tag_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_tag_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_voice_actor_statics_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_voice_actor_statics_dto.dart -------------------------------------------------------------------------------- /lib/core/network/model/user_voice_actor_statics_dto.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/model/user_voice_actor_statics_dto.g.dart -------------------------------------------------------------------------------- /lib/core/network/util/anilist_page_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/util/anilist_page_util.dart -------------------------------------------------------------------------------- /lib/core/network/util/date_time_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/util/date_time_util.dart -------------------------------------------------------------------------------- /lib/core/network/util/http_status_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/util/http_status_util.dart -------------------------------------------------------------------------------- /lib/core/network/web_source/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/network/web_source/util.dart -------------------------------------------------------------------------------- /lib/core/notification/notification_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/notification/notification_channel.dart -------------------------------------------------------------------------------- /lib/core/notification/notification_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/notification/notification_util.dart -------------------------------------------------------------------------------- /lib/core/paging/page_loading_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/paging/page_loading_state.dart -------------------------------------------------------------------------------- /lib/core/paging/paging_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/paging/paging_bloc.dart -------------------------------------------------------------------------------- /lib/core/paging/paging_content_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/paging/paging_content_widget.dart -------------------------------------------------------------------------------- /lib/core/paging/refresh_paging_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/paging/refresh_paging_bloc.dart -------------------------------------------------------------------------------- /lib/core/platform/auth_event_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/platform/auth_event_channel.dart -------------------------------------------------------------------------------- /lib/core/platform/di/auth_event_channel_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/platform/di/auth_event_channel_module.dart -------------------------------------------------------------------------------- /lib/core/platform/platform_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/platform/platform_channel.dart -------------------------------------------------------------------------------- /lib/core/shared_preference/user_data_preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/shared_preference/user_data_preferences.dart -------------------------------------------------------------------------------- /lib/core/usecase/get_media_list_item_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/usecase/get_media_list_item_use_case.dart -------------------------------------------------------------------------------- /lib/core/usecase/media_mark_watched_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/core/usecase/media_mark_watched_use_case.dart -------------------------------------------------------------------------------- /lib/feature/activity_replies/activity_replies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/activity_replies/activity_replies.dart -------------------------------------------------------------------------------- /lib/feature/airing_schedule/airing_schedule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/airing_schedule/airing_schedule.dart -------------------------------------------------------------------------------- /lib/feature/airing_schedule/schedule_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/airing_schedule/schedule_category.dart -------------------------------------------------------------------------------- /lib/feature/aniflow_home/ani_flow_home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/aniflow_home/ani_flow_home.dart -------------------------------------------------------------------------------- /lib/feature/aniflow_home/ani_flow_router_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/aniflow_home/ani_flow_router_delegate.dart -------------------------------------------------------------------------------- /lib/feature/aniflow_home/aniflow_home_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/aniflow_home/aniflow_home_bloc.dart -------------------------------------------------------------------------------- /lib/feature/aniflow_home/aniflow_home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/aniflow_home/aniflow_home_state.dart -------------------------------------------------------------------------------- /lib/feature/aniflow_home/aniflow_home_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/aniflow_home/aniflow_home_state.freezed.dart -------------------------------------------------------------------------------- /lib/feature/aniflow_home/top_level_navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/aniflow_home/top_level_navigation.dart -------------------------------------------------------------------------------- /lib/feature/auth/auth_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/auth/auth_dialog.dart -------------------------------------------------------------------------------- /lib/feature/auth/bloc/auth_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/auth/bloc/auth_bloc.dart -------------------------------------------------------------------------------- /lib/feature/auth/bloc/auth_ui_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/auth/bloc/auth_ui_state.dart -------------------------------------------------------------------------------- /lib/feature/auth/bloc/auth_ui_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/auth/bloc/auth_ui_state.freezed.dart -------------------------------------------------------------------------------- /lib/feature/character_page/bloc/character_page_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/character_page/bloc/character_page_bloc.dart -------------------------------------------------------------------------------- /lib/feature/character_page/bloc/character_page_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/character_page/bloc/character_page_model.dart -------------------------------------------------------------------------------- /lib/feature/character_page/bloc/character_paging_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/character_page/bloc/character_paging_bloc.dart -------------------------------------------------------------------------------- /lib/feature/character_page/character_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/character_page/character_page.dart -------------------------------------------------------------------------------- /lib/feature/detail_character/detail_character.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_character/detail_character.dart -------------------------------------------------------------------------------- /lib/feature/detail_media/bloc/detail_media_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_media/bloc/detail_media_bloc.dart -------------------------------------------------------------------------------- /lib/feature/detail_media/bloc/detail_media_ui_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_media/bloc/detail_media_ui_state.dart -------------------------------------------------------------------------------- /lib/feature/detail_media/build_media_basic_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_media/build_media_basic_info.dart -------------------------------------------------------------------------------- /lib/feature/detail_media/build_related_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_media/build_related_info.dart -------------------------------------------------------------------------------- /lib/feature/detail_media/detail_media.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_media/detail_media.dart -------------------------------------------------------------------------------- /lib/feature/detail_staff/bloc/detail_staff_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_staff/bloc/detail_staff_bloc.dart -------------------------------------------------------------------------------- /lib/feature/detail_staff/bloc/detail_staff_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_staff/bloc/detail_staff_state.dart -------------------------------------------------------------------------------- /lib/feature/detail_staff/detail_staff.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_staff/detail_staff.dart -------------------------------------------------------------------------------- /lib/feature/detail_studio/bloc/detail_studio_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_studio/bloc/detail_studio_bloc.dart -------------------------------------------------------------------------------- /lib/feature/detail_studio/bloc/detail_studio_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_studio/bloc/detail_studio_state.dart -------------------------------------------------------------------------------- /lib/feature/detail_studio/detail_studio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/detail_studio/detail_studio.dart -------------------------------------------------------------------------------- /lib/feature/discover/discover.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/discover.dart -------------------------------------------------------------------------------- /lib/feature/discover/discover_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/discover_bloc.dart -------------------------------------------------------------------------------- /lib/feature/discover/discover_ui_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/discover_ui_state.dart -------------------------------------------------------------------------------- /lib/feature/discover/discover_ui_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/discover_ui_state.freezed.dart -------------------------------------------------------------------------------- /lib/feature/discover/next_to_watch/next_to_watch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/next_to_watch/next_to_watch.dart -------------------------------------------------------------------------------- /lib/feature/discover/next_to_watch/next_to_watch_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/next_to_watch/next_to_watch_bloc.dart -------------------------------------------------------------------------------- /lib/feature/discover/recent_movies/dummy_movies_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/recent_movies/dummy_movies_data.dart -------------------------------------------------------------------------------- /lib/feature/discover/recent_movies/recent_movies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/recent_movies/recent_movies.dart -------------------------------------------------------------------------------- /lib/feature/discover/recent_movies/recent_movies_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/discover/recent_movies/recent_movies_bloc.dart -------------------------------------------------------------------------------- /lib/feature/image_preview/image_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/image_preview/image_preview.dart -------------------------------------------------------------------------------- /lib/feature/image_preview/preview_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/image_preview/preview_source.dart -------------------------------------------------------------------------------- /lib/feature/image_preview/preview_source.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/image_preview/preview_source.freezed.dart -------------------------------------------------------------------------------- /lib/feature/image_preview/preview_source.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/image_preview/preview_source.g.dart -------------------------------------------------------------------------------- /lib/feature/media_page/bloc/media_page_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/media_page/bloc/media_page_bloc.dart -------------------------------------------------------------------------------- /lib/feature/media_page/media_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/media_page/media_page.dart -------------------------------------------------------------------------------- /lib/feature/media_track/bloc/track_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/media_track/bloc/track_bloc.dart -------------------------------------------------------------------------------- /lib/feature/media_track/bloc/track_ui_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/media_track/bloc/track_ui_state.dart -------------------------------------------------------------------------------- /lib/feature/media_track/bloc/track_ui_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/media_track/bloc/track_ui_state.freezed.dart -------------------------------------------------------------------------------- /lib/feature/media_track/media_track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/media_track/media_track.dart -------------------------------------------------------------------------------- /lib/feature/notification/bloc/notification_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/notification/bloc/notification_bloc.dart -------------------------------------------------------------------------------- /lib/feature/notification/bloc/notification_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/notification/bloc/notification_state.dart -------------------------------------------------------------------------------- /lib/feature/notification/notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/notification/notification.dart -------------------------------------------------------------------------------- /lib/feature/profile/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/profile.dart -------------------------------------------------------------------------------- /lib/feature/profile/profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/profile_bloc.dart -------------------------------------------------------------------------------- /lib/feature/profile/profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/profile_state.dart -------------------------------------------------------------------------------- /lib/feature/profile/profile_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/profile_state.freezed.dart -------------------------------------------------------------------------------- /lib/feature/profile/profile_tab_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/profile_tab_category.dart -------------------------------------------------------------------------------- /lib/feature/profile/sub_favorite/profile_favorite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/sub_favorite/profile_favorite.dart -------------------------------------------------------------------------------- /lib/feature/profile/sub_media_list/profile_media_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/sub_media_list/profile_media_list.dart -------------------------------------------------------------------------------- /lib/feature/profile/sub_stats/bloc/stats_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/sub_stats/bloc/stats_bloc.dart -------------------------------------------------------------------------------- /lib/feature/profile/sub_stats/bloc/stats_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/sub_stats/bloc/stats_state.dart -------------------------------------------------------------------------------- /lib/feature/profile/sub_stats/stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/sub_stats/stats.dart -------------------------------------------------------------------------------- /lib/feature/profile/title_with_items_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/profile/title_with_items_builder.dart -------------------------------------------------------------------------------- /lib/feature/search/bloc/search_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/search/bloc/search_bloc.dart -------------------------------------------------------------------------------- /lib/feature/search/bloc/search_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/search/bloc/search_state.dart -------------------------------------------------------------------------------- /lib/feature/search/bloc/search_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/search/bloc/search_state.freezed.dart -------------------------------------------------------------------------------- /lib/feature/search/bloc/search_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/search/bloc/search_type.dart -------------------------------------------------------------------------------- /lib/feature/search/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/search/search_page.dart -------------------------------------------------------------------------------- /lib/feature/settings/github_link/github_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/github_link/github_link.dart -------------------------------------------------------------------------------- /lib/feature/settings/github_link/github_link_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/github_link/github_link_bloc.dart -------------------------------------------------------------------------------- /lib/feature/settings/list_settings_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/list_settings_dialog.dart -------------------------------------------------------------------------------- /lib/feature/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/settings.dart -------------------------------------------------------------------------------- /lib/feature/settings/settings_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/settings_bloc.dart -------------------------------------------------------------------------------- /lib/feature/settings/settings_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/settings_category.dart -------------------------------------------------------------------------------- /lib/feature/settings/settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/settings_state.dart -------------------------------------------------------------------------------- /lib/feature/settings/settings_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/settings/settings_state.freezed.dart -------------------------------------------------------------------------------- /lib/feature/social/activity/activity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/social/activity/activity.dart -------------------------------------------------------------------------------- /lib/feature/social/activity/bloc/activity_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/social/activity/bloc/activity_bloc.dart -------------------------------------------------------------------------------- /lib/feature/social/activity/bloc/activity_item_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/social/activity/bloc/activity_item_bloc.dart -------------------------------------------------------------------------------- /lib/feature/social/activity/bloc/activity_paging_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/social/activity/bloc/activity_paging_bloc.dart -------------------------------------------------------------------------------- /lib/feature/social/activity/bloc/activity_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/social/activity/bloc/activity_state.dart -------------------------------------------------------------------------------- /lib/feature/social/social.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/social/social.dart -------------------------------------------------------------------------------- /lib/feature/staff_page/bloc/staff_page_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/staff_page/bloc/staff_page_bloc.dart -------------------------------------------------------------------------------- /lib/feature/staff_page/staff_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/staff_page/staff_page.dart -------------------------------------------------------------------------------- /lib/feature/toturial/gesture_tutorial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/feature/toturial/gesture_tutorial.dart -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/lib/main.dart -------------------------------------------------------------------------------- /platform_downloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/.gitignore -------------------------------------------------------------------------------- /platform_downloader/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/.metadata -------------------------------------------------------------------------------- /platform_downloader/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /platform_downloader/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /platform_downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/README.md -------------------------------------------------------------------------------- /platform_downloader/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/analysis_options.yaml -------------------------------------------------------------------------------- /platform_downloader/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/android/.gitignore -------------------------------------------------------------------------------- /platform_downloader/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/android/build.gradle -------------------------------------------------------------------------------- /platform_downloader/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/android/gradlew -------------------------------------------------------------------------------- /platform_downloader/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/android/gradlew.bat -------------------------------------------------------------------------------- /platform_downloader/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'platform_downloader' 2 | -------------------------------------------------------------------------------- /platform_downloader/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platform_downloader/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/.gitignore -------------------------------------------------------------------------------- /platform_downloader/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/README.md -------------------------------------------------------------------------------- /platform_downloader/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/analysis_options.yaml -------------------------------------------------------------------------------- /platform_downloader/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/android/.gitignore -------------------------------------------------------------------------------- /platform_downloader/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/android/app/build.gradle -------------------------------------------------------------------------------- /platform_downloader/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/android/build.gradle -------------------------------------------------------------------------------- /platform_downloader/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/android/gradle.properties -------------------------------------------------------------------------------- /platform_downloader/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/android/settings.gradle -------------------------------------------------------------------------------- /platform_downloader/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/ios/.gitignore -------------------------------------------------------------------------------- /platform_downloader/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /platform_downloader/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /platform_downloader/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/ios/Podfile -------------------------------------------------------------------------------- /platform_downloader/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /platform_downloader/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /platform_downloader/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /platform_downloader/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/lib/main.dart -------------------------------------------------------------------------------- /platform_downloader/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/pubspec.lock -------------------------------------------------------------------------------- /platform_downloader/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/example/pubspec.yaml -------------------------------------------------------------------------------- /platform_downloader/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/ios/.gitignore -------------------------------------------------------------------------------- /platform_downloader/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform_downloader/ios/platform_downloader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/ios/platform_downloader.podspec -------------------------------------------------------------------------------- /platform_downloader/lib/platform_downloader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/lib/platform_downloader.dart -------------------------------------------------------------------------------- /platform_downloader/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/pubspec.yaml -------------------------------------------------------------------------------- /platform_downloader/test/platform_downloader_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_downloader/test/platform_downloader_test.dart -------------------------------------------------------------------------------- /platform_notification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/.gitignore -------------------------------------------------------------------------------- /platform_notification/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/.metadata -------------------------------------------------------------------------------- /platform_notification/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /platform_notification/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /platform_notification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/README.md -------------------------------------------------------------------------------- /platform_notification/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/analysis_options.yaml -------------------------------------------------------------------------------- /platform_notification/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/android/.gitignore -------------------------------------------------------------------------------- /platform_notification/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/android/build.gradle -------------------------------------------------------------------------------- /platform_notification/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'platform_notification' 2 | -------------------------------------------------------------------------------- /platform_notification/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /platform_notification/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/.gitignore -------------------------------------------------------------------------------- /platform_notification/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/README.md -------------------------------------------------------------------------------- /platform_notification/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/analysis_options.yaml -------------------------------------------------------------------------------- /platform_notification/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/android/.gitignore -------------------------------------------------------------------------------- /platform_notification/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/android/app/build.gradle -------------------------------------------------------------------------------- /platform_notification/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/android/build.gradle -------------------------------------------------------------------------------- /platform_notification/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/android/gradle.properties -------------------------------------------------------------------------------- /platform_notification/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/android/settings.gradle -------------------------------------------------------------------------------- /platform_notification/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/ios/.gitignore -------------------------------------------------------------------------------- /platform_notification/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /platform_notification/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /platform_notification/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/ios/Podfile -------------------------------------------------------------------------------- /platform_notification/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /platform_notification/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /platform_notification/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /platform_notification/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/lib/main.dart -------------------------------------------------------------------------------- /platform_notification/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/pubspec.lock -------------------------------------------------------------------------------- /platform_notification/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/example/pubspec.yaml -------------------------------------------------------------------------------- /platform_notification/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/ios/.gitignore -------------------------------------------------------------------------------- /platform_notification/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform_notification/ios/platform_notification.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/ios/platform_notification.podspec -------------------------------------------------------------------------------- /platform_notification/lib/platform_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/lib/platform_notification.dart -------------------------------------------------------------------------------- /platform_notification/lib/platform_notification_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/lib/platform_notification_model.dart -------------------------------------------------------------------------------- /platform_notification/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/platform_notification/pubspec.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screen_shots/anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/screen_shots/anime.png -------------------------------------------------------------------------------- /screen_shots/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/screen_shots/character.png -------------------------------------------------------------------------------- /screen_shots/home_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/screen_shots/home_page.png -------------------------------------------------------------------------------- /screen_shots/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/screen_shots/profile.jpeg -------------------------------------------------------------------------------- /screen_shots/track_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/screen_shots/track_list.png -------------------------------------------------------------------------------- /screen_shots/voice_actor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/screen_shots/voice_actor.png -------------------------------------------------------------------------------- /test/core/common/common_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/common/common_test.dart -------------------------------------------------------------------------------- /test/core/common/util/app_version_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/common/util/app_version_util_test.dart -------------------------------------------------------------------------------- /test/core/data/auth_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/auth_repository_test.dart -------------------------------------------------------------------------------- /test/core/data/github_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/github_repository_test.dart -------------------------------------------------------------------------------- /test/core/data/mocks/mock_favorite_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/mocks/mock_favorite_repository.dart -------------------------------------------------------------------------------- /test/core/data/mocks/mock_github_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/mocks/mock_github_data_source.dart -------------------------------------------------------------------------------- /test/core/data/mocks/mock_github_release_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/mocks/mock_github_release_dao.dart -------------------------------------------------------------------------------- /test/core/data/mocks/mock_media_list_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/mocks/mock_media_list_repository.dart -------------------------------------------------------------------------------- /test/core/data/mocks/mock_remote_config_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/mocks/mock_remote_config_manager.dart -------------------------------------------------------------------------------- /test/core/data/mocks/search_repository_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/mocks/search_repository_mock.dart -------------------------------------------------------------------------------- /test/core/data/user_data_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/data/user_data_repository_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/activity_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/activity_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/airing_schedule_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/airing_schedule_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/character_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/character_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/episode_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/episode_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/favorite_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/favorite_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/github_release_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/github_release_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/media_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/media_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/media_list_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/media_list_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/search_result_cache_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/search_result_cache_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/staff_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/staff_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/studio_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/studio_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/dao/user_dao_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/dao/user_dao_test.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v1.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v10.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v10.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v11.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v11.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v2.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v3.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v4.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v5.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v5.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v6.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v6.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v7.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v7.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v8.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v8.dart -------------------------------------------------------------------------------- /test/core/database/generated_migrations/schema_v9.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/generated_migrations/schema_v9.dart -------------------------------------------------------------------------------- /test/core/database/migraion_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/database/migraion_test.dart -------------------------------------------------------------------------------- /test/core/usecase/get_media_list_item_use_case_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/core/usecase/get_media_list_item_use_case_test.dart -------------------------------------------------------------------------------- /test/feature/anime_search/bloc/search_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test/feature/anime_search/bloc/search_bloc_test.dart -------------------------------------------------------------------------------- /test_driver/integration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test_driver/integration_test.dart -------------------------------------------------------------------------------- /test_driver/run_flutter_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andannn/aniflow/HEAD/test_driver/run_flutter_drive.sh --------------------------------------------------------------------------------