├── .fvm └── fvm_config.json ├── .fvmrc ├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── .gitignore ├── .metadata ├── Changelog.md ├── LICENSE.md ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── miraisoft │ │ │ │ └── shiori │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_notification.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_notification.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ └── ic_notification.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_notification.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_notification.png │ │ │ ├── drawable │ │ │ ├── launch_background.xml │ │ │ └── shiori.png │ │ │ ├── mipmap-hdpi │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── launcher_icon.png │ │ │ ├── raw │ │ │ └── keep.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── elements │ ├── anemo.webp │ ├── anemo_black.webp │ ├── anemo_white.webp │ ├── cryo.webp │ ├── cryo_black.webp │ ├── cryo_white.webp │ ├── dendro.webp │ ├── dendro_black.webp │ ├── dendro_white.webp │ ├── electro.webp │ ├── electro_black.webp │ ├── electro_white.webp │ ├── geo.webp │ ├── geo_black.webp │ ├── geo_white.webp │ ├── hydro.webp │ ├── hydro_black.webp │ ├── hydro_white.webp │ ├── pyro.webp │ ├── pyro_black.webp │ └── pyro_white.webp ├── fonts │ ├── Shiori.ttf │ └── config.json ├── icon │ ├── icon.png │ ├── icon_ios.png │ └── icon_macos.png ├── others │ ├── bag.webp │ ├── cake.webp │ ├── clock.webp │ ├── crown.webp │ ├── custom_mark_tag_fps_star.webp │ ├── flower.webp │ ├── gacha.webp │ ├── goblet.webp │ ├── mark_wind_crystal.webp │ ├── monster.webp │ ├── na.webp │ ├── paimon.webp │ ├── paimon_shy.webp │ ├── plume.webp │ ├── primogem.webp │ ├── wish_banner_background.webp │ ├── wish_banner_button.webp │ ├── wish_banner_standard.webp │ ├── wish_banner_wish_result_background.webp │ └── wish_banner_wish_result_item_background.webp ├── weapon_normal_skill_types │ ├── bow.webp │ ├── catalyst.webp │ ├── claymore.webp │ ├── polearm.webp │ └── sword.webp └── weapon_types │ ├── bow.webp │ ├── catalyst.webp │ ├── claymore.webp │ ├── polearm.webp │ └── sword.webp ├── images └── banner.png ├── integration_test ├── extensions │ └── widget_tester_extensions.dart ├── fcm_mock.dart ├── main_test.dart ├── permission_handler_mock.dart ├── tests │ ├── artifacts_page_test.dart │ ├── banner_history_count_page_test.dart │ ├── calculator_asc_materials_page_test.dart │ ├── characters_page_test.dart │ ├── charts_page_test.dart │ ├── custom_builds_page_test.dart │ ├── elements_page_test.dart │ ├── game_codes_page_test.dart │ ├── inventory_page_test.dart │ ├── main_tab_page_test.dart │ ├── materials_page_test.dart │ ├── monsters_page_test.dart │ ├── notifications_page_test.dart │ ├── splash_page_test.dart │ ├── tier_list_page_test.dart │ ├── today_asc_materials_page_test.dart │ ├── weapons_page_test.dart │ └── wish_simulator_page_test.dart └── views │ ├── base_page.dart │ ├── calculator_asc_materials_page.dart │ ├── common_bottom_sheet.dart │ ├── custom_builds_page.dart │ ├── detail_page.dart │ ├── game_codes_page.dart │ ├── main_tab_page.dart │ ├── notifications_page.dart │ ├── splash_page.dart │ ├── tier_list_page.dart │ ├── views.dart │ ├── wish_banner_history_page.dart │ └── wish_simulator_page.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 │ │ ├── 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-50x50@1x.png │ │ ├── Icon-App-50x50@2x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── Contents.json │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── README.md │ │ ├── icon@1x.png │ │ ├── icon@2x.png │ │ └── icon@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ └── Runner.entitlements ├── lib ├── application │ ├── app_bloc_observer.dart │ ├── artifact │ │ ├── artifact_bloc.dart │ │ ├── artifact_event.dart │ │ └── artifact_state.dart │ ├── artifacts │ │ ├── artifacts_bloc.dart │ │ ├── artifacts_event.dart │ │ └── artifacts_state.dart │ ├── backup_restore │ │ ├── backup_restore_bloc.dart │ │ ├── backup_restore_event.dart │ │ └── backup_restore_state.dart │ ├── banner_history_count │ │ ├── banner_history_count_bloc.dart │ │ ├── banner_history_count_event.dart │ │ └── banner_history_count_state.dart │ ├── banner_version_history │ │ ├── banner_version_history_bloc.dart │ │ ├── banner_version_history_event.dart │ │ └── banner_version_history_state.dart │ ├── bloc.dart │ ├── calculator_asc_materials │ │ ├── material_item │ │ │ ├── calculator_asc_materials_item_bloc.dart │ │ │ ├── calculator_asc_materials_item_event.dart │ │ │ └── calculator_asc_materials_item_state.dart │ │ ├── material_item_quantity │ │ │ ├── calculator_asc_materials_item_update_quantity_bloc.dart │ │ │ ├── calculator_asc_materials_item_update_quantity_event.dart │ │ │ └── calculator_asc_materials_item_update_quantity_state.dart │ │ ├── materials │ │ │ ├── calculator_asc_materials_bloc.dart │ │ │ ├── calculator_asc_materials_event.dart │ │ │ └── calculator_asc_materials_state.dart │ │ └── sessions │ │ │ ├── calculator_asc_materials_sessions_bloc.dart │ │ │ ├── calculator_asc_materials_sessions_event.dart │ │ │ └── calculator_asc_materials_sessions_state.dart │ ├── changelog │ │ ├── changelog_bloc.dart │ │ ├── changelog_event.dart │ │ └── changelog_state.dart │ ├── character │ │ ├── character_bloc.dart │ │ ├── character_event.dart │ │ └── character_state.dart │ ├── characters │ │ ├── characters_bloc.dart │ │ ├── characters_event.dart │ │ └── characters_state.dart │ ├── characters_birthdays_per_month │ │ ├── characters_birthdays_per_month_bloc.dart │ │ ├── characters_birthdays_per_month_event.dart │ │ └── characters_birthdays_per_month_state.dart │ ├── characters_per_region │ │ ├── characters_per_region_bloc.dart │ │ ├── characters_per_region_event.dart │ │ └── characters_per_region_state.dart │ ├── characters_per_region_gender │ │ ├── characters_per_region_gender_bloc.dart │ │ ├── characters_per_region_gender_event.dart │ │ └── characters_per_region_gender_state.dart │ ├── charts │ │ ├── ascension_stats │ │ │ ├── chart_ascension_stats_bloc.dart │ │ │ ├── chart_ascension_stats_event.dart │ │ │ └── chart_ascension_stats_state.dart │ │ ├── birthdays │ │ │ ├── chart_birthdays_bloc.dart │ │ │ ├── chart_birthdays_event.dart │ │ │ └── chart_birthdays_state.dart │ │ ├── elements │ │ │ ├── chart_elements_bloc.dart │ │ │ ├── chart_elements_event.dart │ │ │ └── chart_elements_state.dart │ │ ├── genders │ │ │ ├── chart_genders_bloc.dart │ │ │ ├── chart_genders_event.dart │ │ │ └── chart_genders_state.dart │ │ ├── regions │ │ │ ├── chart_regions_bloc.dart │ │ │ ├── chart_regions_event.dart │ │ │ └── chart_regions_state.dart │ │ └── tops │ │ │ ├── chart_tops_bloc.dart │ │ │ ├── chart_tops_event.dart │ │ │ └── chart_tops_state.dart │ ├── check_for_resource_updates │ │ ├── check_for_resource_updates_bloc.dart │ │ ├── check_for_resource_updates_event.dart │ │ └── check_for_resource_updates_state.dart │ ├── custom_build │ │ ├── custom_build_bloc.dart │ │ ├── custom_build_event.dart │ │ └── custom_build_state.dart │ ├── custom_builds │ │ ├── custom_builds_bloc.dart │ │ ├── custom_builds_event.dart │ │ └── custom_builds_state.dart │ ├── donations │ │ ├── donations_bloc.dart │ │ ├── donations_event.dart │ │ └── donations_state.dart │ ├── elements │ │ ├── elements_bloc.dart │ │ ├── elements_event.dart │ │ └── elements_state.dart │ ├── game_codes │ │ ├── game_codes_bloc.dart │ │ ├── game_codes_event.dart │ │ └── game_codes_state.dart │ ├── home │ │ ├── home_bloc.dart │ │ ├── home_event.dart │ │ └── home_state.dart │ ├── inventory │ │ ├── inventory_bloc.dart │ │ ├── inventory_event.dart │ │ └── inventory_state.dart │ ├── item_quantity_form │ │ ├── item_quantity_form_bloc.dart │ │ ├── item_quantity_form_event.dart │ │ └── item_quantity_form_state.dart │ ├── item_release_history │ │ ├── item_release_history_bloc.dart │ │ ├── item_release_history_event.dart │ │ └── item_release_history_state.dart │ ├── items_ascension_stats │ │ ├── items_ascension_stats_bloc.dart │ │ ├── items_ascension_stats_event.dart │ │ └── items_ascension_stats_state.dart │ ├── main │ │ ├── main_bloc.dart │ │ ├── main_event.dart │ │ └── main_state.dart │ ├── main_tab │ │ ├── main_tab_bloc.dart │ │ ├── main_tab_event.dart │ │ └── main_tab_state.dart │ ├── material │ │ ├── material_bloc.dart │ │ ├── material_event.dart │ │ └── material_state.dart │ ├── materials │ │ ├── materials_bloc.dart │ │ ├── materials_event.dart │ │ └── materials_state.dart │ ├── monsters │ │ ├── monsters_bloc.dart │ │ ├── monsters_event.dart │ │ └── monsters_state.dart │ ├── notification │ │ ├── notification_bloc.dart │ │ ├── notification_event.dart │ │ └── notification_state.dart │ ├── notification_timer │ │ ├── notification_timer_bloc.dart │ │ ├── notification_timer_event.dart │ │ └── notification_timer_state.dart │ ├── notifications │ │ ├── notifications_bloc.dart │ │ ├── notifications_event.dart │ │ └── notifications_state.dart │ ├── settings │ │ ├── settings_bloc.dart │ │ ├── settings_event.dart │ │ └── settings_state.dart │ ├── splash │ │ ├── splash_bloc.dart │ │ ├── splash_event.dart │ │ └── splash_state.dart │ ├── tier_list │ │ ├── tier_list_bloc.dart │ │ ├── tier_list_event.dart │ │ └── tier_list_state.dart │ ├── tier_list_form │ │ ├── tier_list_form_bloc.dart │ │ ├── tier_list_form_event.dart │ │ └── tier_list_form_state.dart │ ├── today_materials │ │ ├── today_materials_bloc.dart │ │ ├── today_materials_event.dart │ │ └── today_materials_state.dart │ ├── url_page │ │ ├── url_page_bloc.dart │ │ ├── url_page_event.dart │ │ └── url_page_state.dart │ ├── weapon │ │ ├── weapon_bloc.dart │ │ ├── weapon_event.dart │ │ └── weapon_state.dart │ ├── weapons │ │ ├── weapons_bloc.dart │ │ ├── weapons_event.dart │ │ └── weapons_state.dart │ ├── wish_banner_history │ │ ├── wish_banner_history_bloc.dart │ │ ├── wish_banner_history_event.dart │ │ └── wish_banner_history_state.dart │ ├── wish_simulator │ │ ├── wish_simulator_bloc.dart │ │ ├── wish_simulator_event.dart │ │ └── wish_simulator_state.dart │ ├── wish_simulator_pull_history │ │ ├── wish_simulator_pull_history_bloc.dart │ │ ├── wish_simulator_pull_history_event.dart │ │ └── wish_simulator_pull_history_state.dart │ └── wish_simulator_result │ │ ├── wish_simulator_result_bloc.dart │ │ ├── wish_simulator_result_event.dart │ │ └── wish_simulator_result_state.dart ├── domain │ ├── app_constants.dart │ ├── assets.dart │ ├── check.dart │ ├── enums │ │ ├── app_accent_color_type.dart │ │ ├── app_backup_data_type.dart │ │ ├── app_image_folder_type.dart │ │ ├── app_json_file_type.dart │ │ ├── app_language_type.dart │ │ ├── app_notification_item_type.dart │ │ ├── app_notification_type.dart │ │ ├── app_push_notification_type.dart │ │ ├── app_resource_update_result_type.dart │ │ ├── app_server_reset_time_type.dart │ │ ├── app_theme_type.dart │ │ ├── app_unlocked_feature.dart │ │ ├── artifact_farming_time_type.dart │ │ ├── artifact_filter_type.dart │ │ ├── artifact_type.dart │ │ ├── ascension_material_summary_type.dart │ │ ├── banner_history_item_type.dart │ │ ├── banner_history_sort_type.dart │ │ ├── banner_item_type.dart │ │ ├── character_filter_type.dart │ │ ├── character_role_subtype.dart │ │ ├── character_role_type.dart │ │ ├── character_skill_ability_type.dart │ │ ├── character_skill_type.dart │ │ ├── chart_type.dart │ │ ├── day_type.dart │ │ ├── element_type.dart │ │ ├── end_drawer_item_type.dart │ │ ├── enums.dart │ │ ├── expedition_time_type.dart │ │ ├── furniture_crafting_time_type.dart │ │ ├── item_location_type.dart │ │ ├── item_status_type.dart │ │ ├── item_type.dart │ │ ├── material_filter_type.dart │ │ ├── material_type.dart │ │ ├── monster_drop_type.dart │ │ ├── monster_filter_type.dart │ │ ├── monster_type.dart │ │ ├── realm_rank_type.dart │ │ ├── region_type.dart │ │ ├── sort_direction_type.dart │ │ ├── stat_type.dart │ │ ├── weapon_filter_type.dart │ │ ├── weapon_type.dart │ │ └── wish_banner_grouped_type.dart │ ├── errors.dart │ ├── errors │ │ ├── invalid_state_error.dart │ │ ├── not_found_error.dart │ │ ├── operation_not_supported_error.dart │ │ └── pagination_error.dart │ ├── extensions │ │ ├── datetime_extensions.dart │ │ ├── double_extensions.dart │ │ ├── duration_extensions.dart │ │ ├── iterable_extensions.dart │ │ ├── string_extensions.dart │ │ └── weapon_type_extensions.dart │ ├── models │ │ ├── artifacts │ │ │ └── artifact_card_model.dart │ │ ├── backup │ │ │ ├── backup_app_settings_model.dart │ │ │ ├── backup_calculator_asc_materials_model.dart │ │ │ ├── backup_custom_builds_model.dart │ │ │ ├── backup_game_code_model.dart │ │ │ ├── backup_inventory_model.dart │ │ │ ├── backup_model.dart │ │ │ ├── backup_notifications_model.dart │ │ │ ├── backup_tierlist_model.dart │ │ │ ├── backup_wish_simulator_model.dart │ │ │ └── create_backup_result_model.dart │ │ ├── banner_history │ │ │ ├── banner_history_item_model.dart │ │ │ ├── banner_history_period_model.dart │ │ │ └── item_release_history_model.dart │ │ ├── birthdays_per_month │ │ │ └── character_birthday_model.dart │ │ ├── calculator_asc_materials │ │ │ ├── ascension_materials_summary.dart │ │ │ ├── calculator_session_model.dart │ │ │ ├── character_skill.dart │ │ │ └── item_ascension_materials.dart │ │ ├── characters │ │ │ ├── character_ascension_model.dart │ │ │ ├── character_build_card_model.dart │ │ │ ├── character_card_model.dart │ │ │ ├── character_constellation_model.dart │ │ │ ├── character_multi_talent_ascension_model.dart │ │ │ ├── character_passive_talent_model.dart │ │ │ ├── character_skill_card_model.dart │ │ │ └── character_talent_ascension_model.dart │ │ ├── charts │ │ │ ├── chart_ascension_stat_model.dart │ │ │ ├── chart_birthday_month_model.dart │ │ │ ├── chart_character_region_model.dart │ │ │ ├── chart_element_item_model.dart │ │ │ ├── chart_gender_model.dart │ │ │ └── chart_top_item_model.dart │ │ ├── custom_builds │ │ │ ├── custom_build_artifact_model.dart │ │ │ ├── custom_build_model.dart │ │ │ ├── custom_build_note_model.dart │ │ │ ├── custom_build_team_character_model.dart │ │ │ └── custom_build_weapon_model.dart │ │ ├── db │ │ │ ├── artifacts │ │ │ │ ├── artifact_file_model.dart │ │ │ │ └── artifacts_file.dart │ │ │ ├── banner_history │ │ │ │ ├── banner_history_file.dart │ │ │ │ └── banner_history_period_file_model.dart │ │ │ ├── characters │ │ │ │ ├── character_file_model.dart │ │ │ │ └── characters_file.dart │ │ │ ├── elements │ │ │ │ ├── element_debuff_file_model.dart │ │ │ │ ├── element_reaction_file_model.dart │ │ │ │ └── elements_file.dart │ │ │ ├── furniture │ │ │ │ ├── furniture_file.dart │ │ │ │ └── furniture_file_model.dart │ │ │ ├── gadgets │ │ │ │ ├── gadget_file_model.dart │ │ │ │ └── gadgets_file.dart │ │ │ ├── items │ │ │ │ └── item_ascension_material_file_model.dart │ │ │ ├── materials │ │ │ │ ├── material_file_model.dart │ │ │ │ └── materials_file.dart │ │ │ ├── monsters │ │ │ │ ├── monster_file_model.dart │ │ │ │ └── monsters_file.dart │ │ │ ├── resources │ │ │ │ ├── check_for_updates_result.dart │ │ │ │ └── json_versions_file.dart │ │ │ ├── translations │ │ │ │ ├── translation_artifact_file.dart │ │ │ │ ├── translation_character_file.dart │ │ │ │ ├── translation_element_file.dart │ │ │ │ ├── translation_file.dart │ │ │ │ ├── translation_material_file.dart │ │ │ │ ├── translation_monster_file.dart │ │ │ │ └── translation_weapon_file.dart │ │ │ └── weapons │ │ │ │ ├── weapon_file_model.dart │ │ │ │ └── weapons_file.dart │ │ ├── donations │ │ │ └── package_item_model.dart │ │ ├── dtos.dart │ │ ├── dtos │ │ │ ├── api_list_response_dto.dart │ │ │ ├── api_response_dto.dart │ │ │ ├── empty_response_dto.dart │ │ │ ├── requests │ │ │ │ ├── base_request_dto.dart │ │ │ │ ├── get_resource_diff_request_dto.dart │ │ │ │ ├── register_device_token_request_dto.dart │ │ │ │ └── save_app_logs_request_dto.dart │ │ │ └── responses │ │ │ │ ├── game_code_response_dto.dart │ │ │ │ └── resource_diff_response_dto.dart │ │ ├── elements │ │ │ ├── element_card_model.dart │ │ │ └── element_reaction_card_model.dart │ │ ├── entities.dart │ │ ├── entities │ │ │ ├── base_entity.dart │ │ │ ├── calculator │ │ │ │ ├── calculator_character_skill.dart │ │ │ │ ├── calculator_item.dart │ │ │ │ └── calculator_session.dart │ │ │ ├── custom_builds │ │ │ │ ├── custom_build.dart │ │ │ │ ├── custom_build_artifact.dart │ │ │ │ ├── custom_build_note.dart │ │ │ │ ├── custom_build_team_character.dart │ │ │ │ └── custom_build_weapon.dart │ │ │ ├── game_code │ │ │ │ ├── game_code.dart │ │ │ │ └── game_code_reward.dart │ │ │ ├── inventory │ │ │ │ ├── inventory_item.dart │ │ │ │ └── inventory_used_item.dart │ │ │ ├── notifications │ │ │ │ ├── notification_base.dart │ │ │ │ ├── notification_custom.dart │ │ │ │ ├── notification_expedition.dart │ │ │ │ ├── notification_farming_artifact.dart │ │ │ │ ├── notification_farming_material.dart │ │ │ │ ├── notification_furniture.dart │ │ │ │ ├── notification_gadget.dart │ │ │ │ ├── notification_realm_currency.dart │ │ │ │ ├── notification_resin.dart │ │ │ │ └── notification_weekly_boss.dart │ │ │ ├── telemetry │ │ │ │ └── telemetry.dart │ │ │ ├── tierlist │ │ │ │ └── tierlist_item.dart │ │ │ └── wish_simulator │ │ │ │ ├── wish_simulator_banner_item_pull_history.dart │ │ │ │ └── wish_simulator_banner_pull_history.dart │ │ ├── events │ │ │ └── calculator_asc_material_session_item_event.dart │ │ ├── game_codes │ │ │ └── game_code_model.dart │ │ ├── home │ │ │ ├── today_char_ascension_materials_model.dart │ │ │ └── today_weapon_ascension_material_model.dart │ │ ├── items │ │ │ ├── item_ascension_material_model.dart │ │ │ ├── item_common.dart │ │ │ └── item_experience_model.dart │ │ ├── language_model.dart │ │ ├── materials │ │ │ ├── material_card_model.dart │ │ │ └── sortable_grouped_material.dart │ │ ├── models.dart │ │ ├── monsters │ │ │ └── monster_card_model.dart │ │ ├── notifications │ │ │ ├── notification_item.dart │ │ │ └── notification_item_image.dart │ │ ├── settings │ │ │ └── app_settings.dart │ │ ├── sorting │ │ │ ├── sort_result.dart │ │ │ └── sortable_item.dart │ │ ├── tierlist │ │ │ └── tierlist_row_model.dart │ │ ├── weapons │ │ │ ├── weapon_ascension_model.dart │ │ │ ├── weapon_card_model.dart │ │ │ └── weapon_file_refinement_model.dart │ │ ├── wish_banner_history │ │ │ └── wish_banner_history_grouped_period_model.dart │ │ └── wish_simulator │ │ │ ├── wish_simulator_banner_item_model.dart │ │ │ ├── wish_simulator_banner_item_pull_history_model.dart │ │ │ └── wish_simulator_banner_item_result_model.dart │ ├── services │ │ ├── api_service.dart │ │ ├── backup_restore_service.dart │ │ ├── calculator_asc_materials_service.dart │ │ ├── changelog_provider.dart │ │ ├── data_service.dart │ │ ├── device_info_service.dart │ │ ├── file │ │ │ ├── artifact_file_service.dart │ │ │ ├── banner_history_file_service.dart │ │ │ ├── base_file_service.dart │ │ │ ├── character_file_service.dart │ │ │ ├── element_file_service.dart │ │ │ ├── file_infrastructure.dart │ │ │ ├── furniture_file_service.dart │ │ │ ├── gadget_file_service.dart │ │ │ ├── material_file_service.dart │ │ │ ├── monster_file_service.dart │ │ │ ├── translation_file_service.dart │ │ │ └── weapon_file_service.dart │ │ ├── game_code_service.dart │ │ ├── genshin_service.dart │ │ ├── locale_service.dart │ │ ├── logging_service.dart │ │ ├── network_service.dart │ │ ├── notification_service.dart │ │ ├── persistence │ │ │ ├── base_data_service.dart │ │ │ ├── calculator_asc_materials_data_service.dart │ │ │ ├── custom_builds_data_service.dart │ │ │ ├── game_codes_data_service.dart │ │ │ ├── inventory_data_service.dart │ │ │ ├── notifications_data_service.dart │ │ │ ├── telemetry_data_service.dart │ │ │ ├── tier_list_data_service.dart │ │ │ └── wish_simulator_data_service.dart │ │ ├── purchase_service.dart │ │ ├── resources_service.dart │ │ ├── settings_service.dart │ │ └── telemetry_service.dart │ ├── utils │ │ ├── currency_utils.dart │ │ ├── date_utils.dart │ │ ├── filter_utils.dart │ │ └── format_utils.dart │ └── wish_banner_constants.dart ├── env.dart ├── infrastructure │ ├── api_service.dart │ ├── app_infra_constants.dart │ ├── backup_restore_service.dart │ ├── calculator_asc_materials_service.dart │ ├── changelog_provider.dart │ ├── device_info_service.dart │ ├── file │ │ ├── artifact_file_service.dart │ │ ├── banner_history_file_service.dart │ │ ├── character_file_service.dart │ │ ├── element_file_service.dart │ │ ├── file_infrastructure.dart │ │ ├── furniture_file_service.dart │ │ ├── gadget_file_service.dart │ │ ├── material_file_service.dart │ │ ├── monster_file_service.dart │ │ ├── translation_file_service.dart │ │ └── weapon_file_service.dart │ ├── genshin_service.dart │ ├── infrastructure.dart │ ├── locale_service.dart │ ├── logging_service.dart │ ├── network_service.dart │ ├── notification_service.dart │ ├── persistence │ │ ├── calculator_asc_materials_data_service.dart │ │ ├── custom_builds_data_service.dart │ │ ├── data_service.dart │ │ ├── game_codes_data_service.dart │ │ ├── inventory_data_service.dart │ │ ├── notifications_data_service.dart │ │ ├── telemetry_data_service.dart │ │ ├── tier_list_data_service.dart │ │ └── wish_simulator_data_service.dart │ ├── purchase_service.dart │ ├── resources_service.dart │ ├── settings_service.dart │ └── telemetry_service.dart ├── injection.dart ├── l10n │ ├── intl_de.arb │ ├── intl_en.arb │ ├── intl_es_ES.arb │ ├── intl_fr.arb │ ├── intl_id.arb │ ├── intl_it_IT.arb │ ├── intl_ja.arb │ ├── intl_ko.arb │ ├── intl_pt.arb │ ├── intl_ru.arb │ ├── intl_th.arb │ ├── intl_tr.arb │ ├── intl_uk.arb │ ├── intl_vi.arb │ ├── intl_zh_CN.arb │ └── intl_zh_TW.arb ├── main.dart └── presentation │ ├── app_widget.dart │ ├── artifact │ ├── artifact_page.dart │ └── widgets │ │ ├── bonus.dart │ │ ├── dropped_by.dart │ │ ├── main.dart │ │ ├── pieces.dart │ │ └── used_by.dart │ ├── artifacts │ ├── artifacts_page.dart │ └── widgets │ │ ├── artifact_bottom_sheet.dart │ │ ├── artifact_card.dart │ │ ├── artifact_info_card.dart │ │ └── artifact_stats.dart │ ├── backups │ ├── backups_page.dart │ └── widgets │ │ ├── backup_data_types_selector_dialog.dart │ │ ├── backup_details_dialog.dart │ │ ├── backup_list_item.dart │ │ └── restore_backup_warning_msg.dart │ ├── banner_history_count │ ├── banner_history_count_page.dart │ └── widgets │ │ ├── content.dart │ │ ├── custom_app_bar.dart │ │ ├── left_item_card.dart │ │ ├── version_cell_card.dart │ │ └── version_cell_text.dart │ ├── calculator_asc_materials │ ├── calculator_ascension_materials_page.dart │ ├── calculator_sessions_page.dart │ └── widgets │ │ ├── add_edit_item_bottom_sheet.dart │ │ ├── add_edit_session_dialog.dart │ │ ├── ascension_materials_summary.dart │ │ ├── change_material_quantity_dialog.dart │ │ ├── item_card.dart │ │ ├── material_item.dart │ │ ├── session_list_item.dart │ │ └── skill_item.dart │ ├── character │ ├── character_page.dart │ └── widgets │ │ ├── ascension_materials.dart │ │ ├── builds.dart │ │ ├── constellations.dart │ │ ├── description.dart │ │ ├── main.dart │ │ ├── passives.dart │ │ ├── skills.dart │ │ └── talent_ascension_materials.dart │ ├── characters │ ├── characters_page.dart │ └── widgets │ │ ├── character_ascension_materials.dart │ │ ├── character_bottom_sheet.dart │ │ └── character_card.dart │ ├── charts │ ├── charts_page.dart │ └── widgets │ │ ├── chart_card.dart │ │ ├── chart_legend.dart │ │ ├── horizontal_bar_chart.dart │ │ ├── pie_chart.dart │ │ └── vertical_bar_chart.dart │ ├── custom_build │ ├── custom_build_page.dart │ └── widgets │ │ ├── artifact_row.dart │ │ ├── artifact_section.dart │ │ ├── artifact_substats_dialog.dart │ │ ├── character_section.dart │ │ ├── team_character_row.dart │ │ ├── team_section.dart │ │ ├── weapon_row.dart │ │ └── weapon_section.dart │ ├── custom_builds │ ├── custom_builds_page.dart │ └── widgets │ │ └── custom_build_card.dart │ ├── daily_check_in │ └── daily_check_in_page.dart │ ├── desktop_tablet_scaffold.dart │ ├── donations │ └── donations_bottom_sheet.dart │ ├── elements │ ├── elements_page.dart │ └── widgets │ │ ├── element_debuff_card.dart │ │ ├── element_reaction_card.dart │ │ ├── sliver_element_debuffs.dart │ │ ├── sliver_element_reactions.dart │ │ └── sliver_element_resonances.dart │ ├── game_codes │ ├── game_codes_page.dart │ └── widgets │ │ └── game_code_list_item.dart │ ├── home │ ├── home_page.dart │ └── widgets │ │ ├── ascension_material_item_card.dart │ │ ├── banner_history_count_card.dart │ │ ├── calculators_card.dart │ │ ├── card_description.dart │ │ ├── card_item.dart │ │ ├── change_current_day_dialog.dart │ │ ├── char_card_ascension_material.dart │ │ ├── charts_card.dart │ │ ├── custom_builds_card.dart │ │ ├── daily_check_in_card.dart │ │ ├── elements_card.dart │ │ ├── game_codes_card.dart │ │ ├── main_title.dart │ │ ├── materials_card.dart │ │ ├── monsters_card.dart │ │ ├── my_inventory_card.dart │ │ ├── notifications_card.dart │ │ ├── settings_card.dart │ │ ├── sliver_characters_birthday_card.dart │ │ ├── sliver_main_title.dart │ │ ├── sliver_today_ascension_materials.dart │ │ ├── sliver_today_main_title.dart │ │ ├── tierlist_card.dart │ │ ├── weapon_card_ascension_material.dart │ │ └── wish_simulator_card.dart │ ├── inventory │ ├── inventory_page.dart │ └── widgets │ │ ├── characters_inventory_tab_page.dart │ │ ├── clear_all_dialog.dart │ │ ├── materials_inventory_tab_page.dart │ │ └── weapons_inventory_tab_page.dart │ ├── main_tab_page.dart │ ├── map │ └── map_page.dart │ ├── material │ ├── material_page.dart │ └── widgets │ │ ├── characters.dart │ │ ├── dropped_by.dart │ │ ├── main.dart │ │ ├── obtained_from.dart │ │ ├── related_to.dart │ │ └── weapons.dart │ ├── materials │ ├── materials_page.dart │ └── widgets │ │ ├── material_bottom_sheet.dart │ │ └── material_card.dart │ ├── mobile_scaffold.dart │ ├── monsters │ ├── monsters_page.dart │ └── widgets │ │ ├── monster_bottom_sheet.dart │ │ └── monster_card.dart │ ├── notifications │ ├── notifications_page.dart │ └── widgets │ │ ├── add_edit_notification_bottom_sheet.dart │ │ ├── forms │ │ ├── notification_circle_item.dart │ │ ├── notification_custom_form.dart │ │ ├── notification_daily_checkin_form.dart │ │ ├── notification_dropdown_type.dart │ │ ├── notification_expedition_form.dart │ │ ├── notification_farming_artifact_form.dart │ │ ├── notification_farming_material_form.dart │ │ ├── notification_furniture_form.dart │ │ ├── notification_gadget_form.dart │ │ ├── notification_note.dart │ │ ├── notification_realm_currency_form.dart │ │ ├── notification_resin_form.dart │ │ ├── notification_switch.dart │ │ ├── notification_title_body.dart │ │ └── notification_weekly_boss_form.dart │ │ └── items │ │ ├── notification_list_subtitle.dart │ │ ├── notification_list_subtitle_dates.dart │ │ ├── notification_list_tile.dart │ │ ├── notification_realm_currency_subtitle.dart │ │ └── notification_resin_list_subtitle.dart │ ├── settings │ ├── settings_page.dart │ └── widgets │ │ ├── about_settings_card.dart │ │ ├── accent_color_settings_card.dart │ │ ├── credits_settings_card.dart │ │ ├── language_settings_card.dart │ │ ├── other_settings.dart │ │ ├── settings_card.dart │ │ ├── settings_card_content.dart │ │ └── theme_settings_card.dart │ ├── shared │ ├── app_fab.dart │ ├── app_webview.dart │ ├── ascension_level.dart │ ├── bottom_sheets │ │ ├── bottom_sheet_title.dart │ │ ├── common_bottom_sheet.dart │ │ ├── common_bottom_sheet_buttons.dart │ │ ├── common_button_bar.dart │ │ ├── custom_bottom_sheet.dart │ │ ├── modal_sheet_separator.dart │ │ └── right_bottom_sheet.dart │ ├── bullet_list.dart │ ├── character_skill_priority.dart │ ├── character_stack_image.dart │ ├── child_item_disabled.dart │ ├── common_dropdown_button.dart │ ├── common_table_cell.dart │ ├── custom_divider.dart │ ├── details │ │ ├── detail_horizontal_list.dart │ │ ├── detail_landscape_content.dart │ │ ├── detail_list_tile.dart │ │ ├── detail_main_card.dart │ │ ├── detail_main_content.dart │ │ ├── detail_materials.dart │ │ ├── detail_section.dart │ │ └── detail_stats.dart │ ├── dialogs │ │ ├── banner_version_history_dialog.dart │ │ ├── birthdays_per_month_dialog.dart │ │ ├── changelog_dialog.dart │ │ ├── characters_per_region_dialog.dart │ │ ├── characters_per_region_gender_dialog.dart │ │ ├── check_for_resource_updates_dialog.dart │ │ ├── confirm_dialog.dart │ │ ├── dialog_list_item_row.dart │ │ ├── info_dialog.dart │ │ ├── item_common_with_name_dialog.dart │ │ ├── item_quantity_dialog.dart │ │ ├── item_release_history_dialog.dart │ │ ├── items_ascension_stats_dialog.dart │ │ ├── number_picker_dialog.dart │ │ ├── select_artifact_type_dialog.dart │ │ ├── select_character_role_sub_type_dialog.dart │ │ ├── select_character_role_type_dialog.dart │ │ ├── select_character_skill_type_dialog.dart │ │ ├── select_enum_dialog.dart │ │ ├── select_stat_type_dialog.dart │ │ ├── sort_items_dialog.dart │ │ ├── text_dialog.dart │ │ └── two_column_enum_selector_dialog.dart │ ├── elements_button_bar.dart │ ├── extensions │ │ ├── app_theme_type_extensions.dart │ │ ├── element_type_extensions.dart │ │ ├── focus_scope_node_extensions.dart │ │ ├── i18n_extensions.dart │ │ ├── media_query_extensions.dart │ │ ├── rarity_extensions.dart │ │ └── scroll_controller_extensions.dart │ ├── gradient_card.dart │ ├── hawk_fab_menu.dart │ ├── highlighted_text.dart │ ├── images │ │ ├── artifact_image_type.dart │ │ ├── character_icon_image.dart │ │ ├── circle_item_image.dart │ │ ├── comingsoon_new_avatar.dart │ │ ├── element_image.dart │ │ ├── image_widget_placeholder.dart │ │ ├── monster_icon_image.dart │ │ ├── primogem_icon.dart │ │ ├── rarity.dart │ │ ├── square_item_image.dart │ │ ├── square_item_image_with_name.dart │ │ └── weapon_icon_image.dart │ ├── increment_button.dart │ ├── item_common_with_name_appbar_search_delegate.dart │ ├── item_counter.dart │ ├── item_expansion_panel.dart │ ├── item_popupmenu_filter.dart │ ├── item_priority.dart │ ├── loading.dart │ ├── material_item_button.dart │ ├── material_quantity_row.dart │ ├── mixins │ │ ├── app_fab_mixin.dart │ │ └── scroll_to_top_on_double_tab_tap_mixin.dart │ ├── nothing_found.dart │ ├── nothing_found_column.dart │ ├── number_picker.dart │ ├── page_message.dart │ ├── rarity_rating.dart │ ├── requires_resources_widget.dart │ ├── row_column_item_or.dart │ ├── scaffold_with_fab.dart │ ├── search_box.dart │ ├── shiori_icons.dart │ ├── sliver_loading.dart │ ├── sliver_nothing_found.dart │ ├── sliver_page_filter.dart │ ├── sliver_scaffold_with_fab.dart │ ├── smooth_star_rating.dart │ ├── sort_direction_popupmenu_filter.dart │ ├── styles.dart │ ├── sub_stats_to_focus.dart │ ├── text_link.dart │ ├── transform_tap_scale.dart │ ├── unlock_with_donation_text.dart │ ├── utils │ │ ├── enum_utils.dart │ │ ├── modal_bottom_sheet_utils.dart │ │ ├── permission_utils.dart │ │ ├── screenshot_utils.dart │ │ ├── size_utils.dart │ │ └── toast_utils.dart │ └── weapons_button_bar.dart │ ├── splash │ └── splash_page.dart │ ├── tierlist │ ├── tier_list_page.dart │ └── widgets │ │ ├── rename_tierlist_dialog.dart │ │ ├── tierlist_fab.dart │ │ ├── tierlist_row.dart │ │ └── tierlist_row_color_picker.dart │ ├── today_materials │ ├── today_materials_page.dart │ └── widgets │ │ ├── sliver_character_ascension_materials.dart │ │ └── sliver_weapon_ascension_materials.dart │ ├── weapon │ ├── weapon_page.dart │ └── widgets │ │ ├── ascension_materials.dart │ │ ├── builds.dart │ │ ├── crafting_materials.dart │ │ ├── description.dart │ │ ├── main.dart │ │ └── refinements.dart │ ├── weapons │ ├── weapons_page.dart │ └── widgets │ │ ├── weapon_bottom_sheet.dart │ │ └── weapon_card.dart │ ├── wish_banner_history │ ├── widgets │ │ ├── grouped_banner_card.dart │ │ └── grouped_banner_period.dart │ └── wish_banner_history_page.dart │ └── wish_simulator │ ├── widgets │ ├── banner_main_image.dart │ ├── banner_top_image.dart │ ├── wish_button.dart │ └── wish_result_item.dart │ ├── wish_result_page.dart │ ├── wish_simulator_history_page.dart │ └── wish_simulator_page.dart ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ └── Contents.json │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── run_build.sh ├── run_build_android.sh ├── run_build_ios.sh ├── run_build_macos.sh ├── run_build_windows.sh ├── run_clean.sh ├── run_integration_tests.sh ├── run_tests.sh ├── run_tests_coverage.sh ├── test ├── application │ ├── artifact │ │ └── artifact_bloc_test.dart │ ├── artifacts │ │ └── artifacts_bloc_test.dart │ ├── backup_restore │ │ └── backup_restore_bloc_test.dart │ ├── banner_history_count │ │ └── banner_history_count_bloc_test.dart │ ├── banner_version_history │ │ └── banner_version_history_bloc_test.dart │ ├── calculator_asc_materials │ │ ├── material_item │ │ │ └── calculator_asc_materials_item_bloc_test.dart │ │ ├── material_item_quantity │ │ │ └── calculator_asc_materials_item_update_quantity_bloc_test.dart │ │ ├── materials │ │ │ └── calculator_asc_materials_bloc_test.dart │ │ └── sessions │ │ │ └── calculator_asc_materials_sessions_bloc_test.dart │ ├── changelog │ │ └── changelog_bloc_test.dart │ ├── character │ │ └── character_bloc_test.dart │ ├── characters │ │ └── characters_bloc_test.dart │ ├── characters_birthdays_per_month │ │ └── characters_birthdays_per_month_bloc_test.dart │ ├── characters_per_region │ │ └── characters_per_region_bloc_test.dart │ ├── characters_per_region_gender │ │ └── characters_per_region_gender_bloc_test.dart │ ├── charts │ │ ├── ascension_stats │ │ │ └── chart_ascension_stats_bloc_test.dart │ │ ├── birthdays │ │ │ └── chart_birthdays_bloc_test.dart │ │ ├── elements │ │ │ └── chart_elements_bloc_test.dart │ │ ├── genders │ │ │ └── chart_genders_bloc_test.dart │ │ ├── regions │ │ │ └── chart_regions_bloc_test.dart │ │ └── tops │ │ │ └── chart_tops_bloc_test.dart │ ├── check_for_resource_updates │ │ └── check_for_resource_updates_bloc_test.dart │ ├── custom_build │ │ └── custom_build_bloc_test.dart │ ├── custom_builds │ │ └── custom_builds_bloc_test.dart │ ├── donations │ │ └── donations_bloc_test.dart │ ├── elements │ │ └── elements_bloc_test.dart │ ├── game_codes │ │ └── game_codes_bloc_test.dart │ ├── home │ │ └── home_bloc_test.dart │ ├── inventory │ │ └── inventory_bloc_test.dart │ ├── item_quantity_form │ │ └── item_quantity_form_bloc_test.dart │ ├── item_release_history │ │ └── item_release_history_bloc_test.dart │ ├── items_ascension_stats │ │ └── items_ascension_stats_bloc_test.dart │ ├── main │ │ └── main_bloc_test.dart │ ├── main_tab │ │ └── main_tab_bloc_test.dart │ ├── material │ │ └── material_bloc_test.dart │ ├── materials │ │ └── materials_bloc_test.dart │ ├── monsters │ │ └── monsters_bloc_test.dart │ ├── notification │ │ └── notification_bloc_test.dart │ ├── notification_timer │ │ └── notification_timer_bloc_test.dart │ ├── notifications │ │ └── notifications_bloc_test.dart │ ├── settings │ │ └── settings_bloc_test.dart │ ├── splash │ │ └── splash_bloc_test.dart │ ├── tier_list │ │ └── tier_list_bloc_test.dart │ ├── tier_list_form │ │ └── tier_list_form_bloc_test.dart │ ├── today_materials │ │ └── today_materials_bloc_test.dart │ ├── url_page │ │ └── url_page_bloc_test.dart │ ├── weapon │ │ └── weapon_bloc_test.dart │ ├── weapons │ │ └── weapons_bloc_test.dart │ ├── wish_banner_history │ │ └── wish_banner_history_bloc_test.dart │ ├── wish_simulator │ │ └── wish_simulator_bloc_test.dart │ ├── wish_simulator_pull_history │ │ └── wish_simulator_pull_history_bloc_test.dart │ └── wish_simulator_result │ │ └── wish_simulator_result_bloc_test.dart ├── common.dart ├── dummy_mocks.dart ├── fake_test.dart ├── infrastructure │ ├── backup_restore_service_test.dart │ ├── file │ │ ├── artifact_file_service_test.dart │ │ ├── banner_file_service_test.dart │ │ ├── character_file_service_test.dart │ │ ├── common_file.dart │ │ ├── elements_file_service_test.dart │ │ ├── materials_file_service_test.dart │ │ ├── monster_file_service_test.dart │ │ ├── translation_file_service_test.dart │ │ └── weapon_file_service_test.dart │ ├── genshin_service_test.dart │ ├── locale_service_test.dart │ ├── persistence │ │ ├── calculator_asc_materials_data_service_test.dart │ │ ├── custom_builds_data_service_test.dart │ │ ├── game_codes_data_service_test.dart │ │ ├── inventory_data_service_test.dart │ │ ├── notifications_data_service_test.dart │ │ ├── tier_list_data_service_test.dart │ │ └── wish_simulator_data_service_test.dart │ └── resource_service_test.dart ├── mocks.dart └── nice_mocks.dart └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.fvm/fvm_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "flutterSdkVersion": "3.32.4" 3 | } -------------------------------------------------------------------------------- /.fvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/.fvmrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/.metadata -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/shiori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/drawable/shiori.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/keep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/raw/keep.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/elements/anemo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/anemo.webp -------------------------------------------------------------------------------- /assets/elements/anemo_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/anemo_black.webp -------------------------------------------------------------------------------- /assets/elements/anemo_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/anemo_white.webp -------------------------------------------------------------------------------- /assets/elements/cryo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/cryo.webp -------------------------------------------------------------------------------- /assets/elements/cryo_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/cryo_black.webp -------------------------------------------------------------------------------- /assets/elements/cryo_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/cryo_white.webp -------------------------------------------------------------------------------- /assets/elements/dendro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/dendro.webp -------------------------------------------------------------------------------- /assets/elements/dendro_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/dendro_black.webp -------------------------------------------------------------------------------- /assets/elements/dendro_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/dendro_white.webp -------------------------------------------------------------------------------- /assets/elements/electro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/electro.webp -------------------------------------------------------------------------------- /assets/elements/electro_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/electro_black.webp -------------------------------------------------------------------------------- /assets/elements/electro_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/electro_white.webp -------------------------------------------------------------------------------- /assets/elements/geo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/geo.webp -------------------------------------------------------------------------------- /assets/elements/geo_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/geo_black.webp -------------------------------------------------------------------------------- /assets/elements/geo_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/geo_white.webp -------------------------------------------------------------------------------- /assets/elements/hydro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/hydro.webp -------------------------------------------------------------------------------- /assets/elements/hydro_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/hydro_black.webp -------------------------------------------------------------------------------- /assets/elements/hydro_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/hydro_white.webp -------------------------------------------------------------------------------- /assets/elements/pyro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/pyro.webp -------------------------------------------------------------------------------- /assets/elements/pyro_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/pyro_black.webp -------------------------------------------------------------------------------- /assets/elements/pyro_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/elements/pyro_white.webp -------------------------------------------------------------------------------- /assets/fonts/Shiori.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/fonts/Shiori.ttf -------------------------------------------------------------------------------- /assets/fonts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/fonts/config.json -------------------------------------------------------------------------------- /assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/icon/icon.png -------------------------------------------------------------------------------- /assets/icon/icon_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/icon/icon_ios.png -------------------------------------------------------------------------------- /assets/icon/icon_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/icon/icon_macos.png -------------------------------------------------------------------------------- /assets/others/bag.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/bag.webp -------------------------------------------------------------------------------- /assets/others/cake.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/cake.webp -------------------------------------------------------------------------------- /assets/others/clock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/clock.webp -------------------------------------------------------------------------------- /assets/others/crown.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/crown.webp -------------------------------------------------------------------------------- /assets/others/custom_mark_tag_fps_star.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/custom_mark_tag_fps_star.webp -------------------------------------------------------------------------------- /assets/others/flower.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/flower.webp -------------------------------------------------------------------------------- /assets/others/gacha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/gacha.webp -------------------------------------------------------------------------------- /assets/others/goblet.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/goblet.webp -------------------------------------------------------------------------------- /assets/others/mark_wind_crystal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/mark_wind_crystal.webp -------------------------------------------------------------------------------- /assets/others/monster.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/monster.webp -------------------------------------------------------------------------------- /assets/others/na.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/na.webp -------------------------------------------------------------------------------- /assets/others/paimon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/paimon.webp -------------------------------------------------------------------------------- /assets/others/paimon_shy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/paimon_shy.webp -------------------------------------------------------------------------------- /assets/others/plume.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/plume.webp -------------------------------------------------------------------------------- /assets/others/primogem.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/primogem.webp -------------------------------------------------------------------------------- /assets/others/wish_banner_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/wish_banner_background.webp -------------------------------------------------------------------------------- /assets/others/wish_banner_button.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/wish_banner_button.webp -------------------------------------------------------------------------------- /assets/others/wish_banner_standard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/wish_banner_standard.webp -------------------------------------------------------------------------------- /assets/others/wish_banner_wish_result_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/wish_banner_wish_result_background.webp -------------------------------------------------------------------------------- /assets/others/wish_banner_wish_result_item_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/others/wish_banner_wish_result_item_background.webp -------------------------------------------------------------------------------- /assets/weapon_normal_skill_types/bow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_normal_skill_types/bow.webp -------------------------------------------------------------------------------- /assets/weapon_normal_skill_types/catalyst.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_normal_skill_types/catalyst.webp -------------------------------------------------------------------------------- /assets/weapon_normal_skill_types/claymore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_normal_skill_types/claymore.webp -------------------------------------------------------------------------------- /assets/weapon_normal_skill_types/polearm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_normal_skill_types/polearm.webp -------------------------------------------------------------------------------- /assets/weapon_normal_skill_types/sword.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_normal_skill_types/sword.webp -------------------------------------------------------------------------------- /assets/weapon_types/bow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_types/bow.webp -------------------------------------------------------------------------------- /assets/weapon_types/catalyst.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_types/catalyst.webp -------------------------------------------------------------------------------- /assets/weapon_types/claymore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_types/claymore.webp -------------------------------------------------------------------------------- /assets/weapon_types/polearm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_types/polearm.webp -------------------------------------------------------------------------------- /assets/weapon_types/sword.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/assets/weapon_types/sword.webp -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/images/banner.png -------------------------------------------------------------------------------- /integration_test/extensions/widget_tester_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/extensions/widget_tester_extensions.dart -------------------------------------------------------------------------------- /integration_test/fcm_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/fcm_mock.dart -------------------------------------------------------------------------------- /integration_test/main_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/main_test.dart -------------------------------------------------------------------------------- /integration_test/permission_handler_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/permission_handler_mock.dart -------------------------------------------------------------------------------- /integration_test/tests/artifacts_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/artifacts_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/banner_history_count_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/banner_history_count_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/calculator_asc_materials_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/calculator_asc_materials_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/characters_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/characters_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/charts_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/charts_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/custom_builds_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/custom_builds_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/elements_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/elements_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/game_codes_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/game_codes_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/inventory_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/inventory_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/main_tab_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/main_tab_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/materials_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/materials_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/monsters_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/monsters_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/notifications_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/notifications_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/splash_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/splash_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/tier_list_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/tier_list_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/today_asc_materials_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/today_asc_materials_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/weapons_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/weapons_page_test.dart -------------------------------------------------------------------------------- /integration_test/tests/wish_simulator_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/tests/wish_simulator_page_test.dart -------------------------------------------------------------------------------- /integration_test/views/base_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/base_page.dart -------------------------------------------------------------------------------- /integration_test/views/calculator_asc_materials_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/calculator_asc_materials_page.dart -------------------------------------------------------------------------------- /integration_test/views/common_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/common_bottom_sheet.dart -------------------------------------------------------------------------------- /integration_test/views/custom_builds_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/custom_builds_page.dart -------------------------------------------------------------------------------- /integration_test/views/detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/detail_page.dart -------------------------------------------------------------------------------- /integration_test/views/game_codes_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/game_codes_page.dart -------------------------------------------------------------------------------- /integration_test/views/main_tab_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/main_tab_page.dart -------------------------------------------------------------------------------- /integration_test/views/notifications_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/notifications_page.dart -------------------------------------------------------------------------------- /integration_test/views/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/splash_page.dart -------------------------------------------------------------------------------- /integration_test/views/tier_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/tier_list_page.dart -------------------------------------------------------------------------------- /integration_test/views/views.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/views.dart -------------------------------------------------------------------------------- /integration_test/views/wish_banner_history_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/wish_banner_history_page.dart -------------------------------------------------------------------------------- /integration_test/views/wish_simulator_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/integration_test/views/wish_simulator_page.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/icon@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/icon@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/icon@3x.png -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /lib/application/app_bloc_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/app_bloc_observer.dart -------------------------------------------------------------------------------- /lib/application/artifact/artifact_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/artifact/artifact_bloc.dart -------------------------------------------------------------------------------- /lib/application/artifact/artifact_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/artifact/artifact_event.dart -------------------------------------------------------------------------------- /lib/application/artifact/artifact_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/artifact/artifact_state.dart -------------------------------------------------------------------------------- /lib/application/artifacts/artifacts_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/artifacts/artifacts_bloc.dart -------------------------------------------------------------------------------- /lib/application/artifacts/artifacts_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/artifacts/artifacts_event.dart -------------------------------------------------------------------------------- /lib/application/artifacts/artifacts_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/artifacts/artifacts_state.dart -------------------------------------------------------------------------------- /lib/application/backup_restore/backup_restore_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/backup_restore/backup_restore_bloc.dart -------------------------------------------------------------------------------- /lib/application/backup_restore/backup_restore_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/backup_restore/backup_restore_event.dart -------------------------------------------------------------------------------- /lib/application/backup_restore/backup_restore_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/backup_restore/backup_restore_state.dart -------------------------------------------------------------------------------- /lib/application/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/bloc.dart -------------------------------------------------------------------------------- /lib/application/changelog/changelog_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/changelog/changelog_bloc.dart -------------------------------------------------------------------------------- /lib/application/changelog/changelog_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/changelog/changelog_event.dart -------------------------------------------------------------------------------- /lib/application/changelog/changelog_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/changelog/changelog_state.dart -------------------------------------------------------------------------------- /lib/application/character/character_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/character/character_bloc.dart -------------------------------------------------------------------------------- /lib/application/character/character_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/character/character_event.dart -------------------------------------------------------------------------------- /lib/application/character/character_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/character/character_state.dart -------------------------------------------------------------------------------- /lib/application/characters/characters_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/characters/characters_bloc.dart -------------------------------------------------------------------------------- /lib/application/characters/characters_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/characters/characters_event.dart -------------------------------------------------------------------------------- /lib/application/characters/characters_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/characters/characters_state.dart -------------------------------------------------------------------------------- /lib/application/charts/birthdays/chart_birthdays_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/birthdays/chart_birthdays_bloc.dart -------------------------------------------------------------------------------- /lib/application/charts/birthdays/chart_birthdays_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/birthdays/chart_birthdays_event.dart -------------------------------------------------------------------------------- /lib/application/charts/birthdays/chart_birthdays_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/birthdays/chart_birthdays_state.dart -------------------------------------------------------------------------------- /lib/application/charts/elements/chart_elements_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/elements/chart_elements_bloc.dart -------------------------------------------------------------------------------- /lib/application/charts/elements/chart_elements_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/elements/chart_elements_event.dart -------------------------------------------------------------------------------- /lib/application/charts/elements/chart_elements_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/elements/chart_elements_state.dart -------------------------------------------------------------------------------- /lib/application/charts/genders/chart_genders_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/genders/chart_genders_bloc.dart -------------------------------------------------------------------------------- /lib/application/charts/genders/chart_genders_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/genders/chart_genders_event.dart -------------------------------------------------------------------------------- /lib/application/charts/genders/chart_genders_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/genders/chart_genders_state.dart -------------------------------------------------------------------------------- /lib/application/charts/regions/chart_regions_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/regions/chart_regions_bloc.dart -------------------------------------------------------------------------------- /lib/application/charts/regions/chart_regions_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/regions/chart_regions_event.dart -------------------------------------------------------------------------------- /lib/application/charts/regions/chart_regions_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/regions/chart_regions_state.dart -------------------------------------------------------------------------------- /lib/application/charts/tops/chart_tops_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/tops/chart_tops_bloc.dart -------------------------------------------------------------------------------- /lib/application/charts/tops/chart_tops_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/tops/chart_tops_event.dart -------------------------------------------------------------------------------- /lib/application/charts/tops/chart_tops_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/charts/tops/chart_tops_state.dart -------------------------------------------------------------------------------- /lib/application/custom_build/custom_build_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/custom_build/custom_build_bloc.dart -------------------------------------------------------------------------------- /lib/application/custom_build/custom_build_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/custom_build/custom_build_event.dart -------------------------------------------------------------------------------- /lib/application/custom_build/custom_build_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/custom_build/custom_build_state.dart -------------------------------------------------------------------------------- /lib/application/custom_builds/custom_builds_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/custom_builds/custom_builds_bloc.dart -------------------------------------------------------------------------------- /lib/application/custom_builds/custom_builds_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/custom_builds/custom_builds_event.dart -------------------------------------------------------------------------------- /lib/application/custom_builds/custom_builds_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/custom_builds/custom_builds_state.dart -------------------------------------------------------------------------------- /lib/application/donations/donations_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/donations/donations_bloc.dart -------------------------------------------------------------------------------- /lib/application/donations/donations_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/donations/donations_event.dart -------------------------------------------------------------------------------- /lib/application/donations/donations_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/donations/donations_state.dart -------------------------------------------------------------------------------- /lib/application/elements/elements_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/elements/elements_bloc.dart -------------------------------------------------------------------------------- /lib/application/elements/elements_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/elements/elements_event.dart -------------------------------------------------------------------------------- /lib/application/elements/elements_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/elements/elements_state.dart -------------------------------------------------------------------------------- /lib/application/game_codes/game_codes_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/game_codes/game_codes_bloc.dart -------------------------------------------------------------------------------- /lib/application/game_codes/game_codes_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/game_codes/game_codes_event.dart -------------------------------------------------------------------------------- /lib/application/game_codes/game_codes_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/game_codes/game_codes_state.dart -------------------------------------------------------------------------------- /lib/application/home/home_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/home/home_bloc.dart -------------------------------------------------------------------------------- /lib/application/home/home_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/home/home_event.dart -------------------------------------------------------------------------------- /lib/application/home/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/home/home_state.dart -------------------------------------------------------------------------------- /lib/application/inventory/inventory_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/inventory/inventory_bloc.dart -------------------------------------------------------------------------------- /lib/application/inventory/inventory_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/inventory/inventory_event.dart -------------------------------------------------------------------------------- /lib/application/inventory/inventory_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/inventory/inventory_state.dart -------------------------------------------------------------------------------- /lib/application/item_quantity_form/item_quantity_form_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/item_quantity_form/item_quantity_form_bloc.dart -------------------------------------------------------------------------------- /lib/application/main/main_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/main/main_bloc.dart -------------------------------------------------------------------------------- /lib/application/main/main_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/main/main_event.dart -------------------------------------------------------------------------------- /lib/application/main/main_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/main/main_state.dart -------------------------------------------------------------------------------- /lib/application/main_tab/main_tab_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/main_tab/main_tab_bloc.dart -------------------------------------------------------------------------------- /lib/application/main_tab/main_tab_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/main_tab/main_tab_event.dart -------------------------------------------------------------------------------- /lib/application/main_tab/main_tab_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/main_tab/main_tab_state.dart -------------------------------------------------------------------------------- /lib/application/material/material_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/material/material_bloc.dart -------------------------------------------------------------------------------- /lib/application/material/material_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/material/material_event.dart -------------------------------------------------------------------------------- /lib/application/material/material_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/material/material_state.dart -------------------------------------------------------------------------------- /lib/application/materials/materials_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/materials/materials_bloc.dart -------------------------------------------------------------------------------- /lib/application/materials/materials_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/materials/materials_event.dart -------------------------------------------------------------------------------- /lib/application/materials/materials_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/materials/materials_state.dart -------------------------------------------------------------------------------- /lib/application/monsters/monsters_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/monsters/monsters_bloc.dart -------------------------------------------------------------------------------- /lib/application/monsters/monsters_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/monsters/monsters_event.dart -------------------------------------------------------------------------------- /lib/application/monsters/monsters_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/monsters/monsters_state.dart -------------------------------------------------------------------------------- /lib/application/notification/notification_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/notification/notification_bloc.dart -------------------------------------------------------------------------------- /lib/application/notification/notification_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/notification/notification_event.dart -------------------------------------------------------------------------------- /lib/application/notification/notification_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/notification/notification_state.dart -------------------------------------------------------------------------------- /lib/application/notification_timer/notification_timer_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/notification_timer/notification_timer_bloc.dart -------------------------------------------------------------------------------- /lib/application/notifications/notifications_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/notifications/notifications_bloc.dart -------------------------------------------------------------------------------- /lib/application/notifications/notifications_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/notifications/notifications_event.dart -------------------------------------------------------------------------------- /lib/application/notifications/notifications_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/notifications/notifications_state.dart -------------------------------------------------------------------------------- /lib/application/settings/settings_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/settings/settings_bloc.dart -------------------------------------------------------------------------------- /lib/application/settings/settings_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/settings/settings_event.dart -------------------------------------------------------------------------------- /lib/application/settings/settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/settings/settings_state.dart -------------------------------------------------------------------------------- /lib/application/splash/splash_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/splash/splash_bloc.dart -------------------------------------------------------------------------------- /lib/application/splash/splash_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/splash/splash_event.dart -------------------------------------------------------------------------------- /lib/application/splash/splash_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/splash/splash_state.dart -------------------------------------------------------------------------------- /lib/application/tier_list/tier_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/tier_list/tier_list_bloc.dart -------------------------------------------------------------------------------- /lib/application/tier_list/tier_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/tier_list/tier_list_event.dart -------------------------------------------------------------------------------- /lib/application/tier_list/tier_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/tier_list/tier_list_state.dart -------------------------------------------------------------------------------- /lib/application/tier_list_form/tier_list_form_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/tier_list_form/tier_list_form_bloc.dart -------------------------------------------------------------------------------- /lib/application/tier_list_form/tier_list_form_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/tier_list_form/tier_list_form_event.dart -------------------------------------------------------------------------------- /lib/application/tier_list_form/tier_list_form_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/tier_list_form/tier_list_form_state.dart -------------------------------------------------------------------------------- /lib/application/today_materials/today_materials_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/today_materials/today_materials_bloc.dart -------------------------------------------------------------------------------- /lib/application/today_materials/today_materials_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/today_materials/today_materials_event.dart -------------------------------------------------------------------------------- /lib/application/today_materials/today_materials_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/today_materials/today_materials_state.dart -------------------------------------------------------------------------------- /lib/application/url_page/url_page_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/url_page/url_page_bloc.dart -------------------------------------------------------------------------------- /lib/application/url_page/url_page_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/url_page/url_page_event.dart -------------------------------------------------------------------------------- /lib/application/url_page/url_page_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/url_page/url_page_state.dart -------------------------------------------------------------------------------- /lib/application/weapon/weapon_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/weapon/weapon_bloc.dart -------------------------------------------------------------------------------- /lib/application/weapon/weapon_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/weapon/weapon_event.dart -------------------------------------------------------------------------------- /lib/application/weapon/weapon_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/weapon/weapon_state.dart -------------------------------------------------------------------------------- /lib/application/weapons/weapons_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/weapons/weapons_bloc.dart -------------------------------------------------------------------------------- /lib/application/weapons/weapons_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/weapons/weapons_event.dart -------------------------------------------------------------------------------- /lib/application/weapons/weapons_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/weapons/weapons_state.dart -------------------------------------------------------------------------------- /lib/application/wish_simulator/wish_simulator_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/wish_simulator/wish_simulator_bloc.dart -------------------------------------------------------------------------------- /lib/application/wish_simulator/wish_simulator_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/wish_simulator/wish_simulator_event.dart -------------------------------------------------------------------------------- /lib/application/wish_simulator/wish_simulator_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/application/wish_simulator/wish_simulator_state.dart -------------------------------------------------------------------------------- /lib/domain/app_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/app_constants.dart -------------------------------------------------------------------------------- /lib/domain/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/assets.dart -------------------------------------------------------------------------------- /lib/domain/check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/check.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_accent_color_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_accent_color_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_backup_data_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_backup_data_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_image_folder_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_image_folder_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_json_file_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_json_file_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_language_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_language_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_notification_item_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_notification_item_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_notification_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_notification_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_push_notification_type.dart: -------------------------------------------------------------------------------- 1 | enum AppPushNotificationType { 2 | newGameCodesAvailable, 3 | } 4 | -------------------------------------------------------------------------------- /lib/domain/enums/app_resource_update_result_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_resource_update_result_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_server_reset_time_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/app_server_reset_time_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/app_theme_type.dart: -------------------------------------------------------------------------------- 1 | enum AppThemeType { 2 | dark, 3 | light, 4 | } 5 | -------------------------------------------------------------------------------- /lib/domain/enums/app_unlocked_feature.dart: -------------------------------------------------------------------------------- 1 | enum AppUnlockedFeature { 2 | darkAmoledTheme, 3 | } 4 | -------------------------------------------------------------------------------- /lib/domain/enums/artifact_farming_time_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/artifact_farming_time_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/artifact_filter_type.dart: -------------------------------------------------------------------------------- 1 | enum ArtifactFilterType { 2 | name, 3 | rarity, 4 | } 5 | -------------------------------------------------------------------------------- /lib/domain/enums/artifact_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/artifact_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/ascension_material_summary_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/ascension_material_summary_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/banner_history_item_type.dart: -------------------------------------------------------------------------------- 1 | enum BannerHistoryItemType { 2 | character, 3 | weapon, 4 | } 5 | -------------------------------------------------------------------------------- /lib/domain/enums/banner_history_sort_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/banner_history_sort_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/banner_item_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/banner_item_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/character_filter_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/character_filter_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/character_role_subtype.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/character_role_subtype.dart -------------------------------------------------------------------------------- /lib/domain/enums/character_role_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/character_role_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/character_skill_ability_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/character_skill_ability_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/character_skill_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/character_skill_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/chart_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/chart_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/day_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/day_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/element_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/element_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/end_drawer_item_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/end_drawer_item_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/enums.dart -------------------------------------------------------------------------------- /lib/domain/enums/expedition_time_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/expedition_time_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/furniture_crafting_time_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/furniture_crafting_time_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/item_location_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/item_location_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/item_status_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/item_status_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/item_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/item_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/material_filter_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/material_filter_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/material_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/material_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/monster_drop_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/monster_drop_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/monster_filter_type.dart: -------------------------------------------------------------------------------- 1 | enum MonsterFilterType { 2 | name, 3 | } 4 | -------------------------------------------------------------------------------- /lib/domain/enums/monster_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/monster_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/realm_rank_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/realm_rank_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/region_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/region_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/sort_direction_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/sort_direction_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/stat_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/stat_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/weapon_filter_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/weapon_filter_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/weapon_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/weapon_type.dart -------------------------------------------------------------------------------- /lib/domain/enums/wish_banner_grouped_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/enums/wish_banner_grouped_type.dart -------------------------------------------------------------------------------- /lib/domain/errors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/errors.dart -------------------------------------------------------------------------------- /lib/domain/errors/invalid_state_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/errors/invalid_state_error.dart -------------------------------------------------------------------------------- /lib/domain/errors/not_found_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/errors/not_found_error.dart -------------------------------------------------------------------------------- /lib/domain/errors/operation_not_supported_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/errors/operation_not_supported_error.dart -------------------------------------------------------------------------------- /lib/domain/errors/pagination_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/errors/pagination_error.dart -------------------------------------------------------------------------------- /lib/domain/extensions/datetime_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/extensions/datetime_extensions.dart -------------------------------------------------------------------------------- /lib/domain/extensions/double_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/extensions/double_extensions.dart -------------------------------------------------------------------------------- /lib/domain/extensions/duration_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/extensions/duration_extensions.dart -------------------------------------------------------------------------------- /lib/domain/extensions/iterable_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/extensions/iterable_extensions.dart -------------------------------------------------------------------------------- /lib/domain/extensions/string_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/extensions/string_extensions.dart -------------------------------------------------------------------------------- /lib/domain/extensions/weapon_type_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/extensions/weapon_type_extensions.dart -------------------------------------------------------------------------------- /lib/domain/models/artifacts/artifact_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/artifacts/artifact_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_app_settings_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_app_settings_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_custom_builds_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_custom_builds_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_game_code_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_game_code_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_inventory_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_inventory_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_notifications_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_notifications_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_tierlist_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_tierlist_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/backup_wish_simulator_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/backup_wish_simulator_model.dart -------------------------------------------------------------------------------- /lib/domain/models/backup/create_backup_result_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/backup/create_backup_result_model.dart -------------------------------------------------------------------------------- /lib/domain/models/banner_history/banner_history_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/banner_history/banner_history_item_model.dart -------------------------------------------------------------------------------- /lib/domain/models/calculator_asc_materials/character_skill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/calculator_asc_materials/character_skill.dart -------------------------------------------------------------------------------- /lib/domain/models/characters/character_ascension_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/characters/character_ascension_model.dart -------------------------------------------------------------------------------- /lib/domain/models/characters/character_build_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/characters/character_build_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/characters/character_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/characters/character_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/characters/character_constellation_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/characters/character_constellation_model.dart -------------------------------------------------------------------------------- /lib/domain/models/characters/character_skill_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/characters/character_skill_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/charts/chart_ascension_stat_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/charts/chart_ascension_stat_model.dart -------------------------------------------------------------------------------- /lib/domain/models/charts/chart_birthday_month_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/charts/chart_birthday_month_model.dart -------------------------------------------------------------------------------- /lib/domain/models/charts/chart_character_region_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/charts/chart_character_region_model.dart -------------------------------------------------------------------------------- /lib/domain/models/charts/chart_element_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/charts/chart_element_item_model.dart -------------------------------------------------------------------------------- /lib/domain/models/charts/chart_gender_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/charts/chart_gender_model.dart -------------------------------------------------------------------------------- /lib/domain/models/charts/chart_top_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/charts/chart_top_item_model.dart -------------------------------------------------------------------------------- /lib/domain/models/custom_builds/custom_build_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/custom_builds/custom_build_model.dart -------------------------------------------------------------------------------- /lib/domain/models/custom_builds/custom_build_note_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/custom_builds/custom_build_note_model.dart -------------------------------------------------------------------------------- /lib/domain/models/custom_builds/custom_build_weapon_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/custom_builds/custom_build_weapon_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/artifacts/artifact_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/artifacts/artifact_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/artifacts/artifacts_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/artifacts/artifacts_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/banner_history/banner_history_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/banner_history/banner_history_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/characters/character_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/characters/character_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/characters/characters_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/characters/characters_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/elements/element_debuff_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/elements/element_debuff_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/elements/element_reaction_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/elements/element_reaction_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/elements/elements_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/elements/elements_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/furniture/furniture_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/furniture/furniture_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/furniture/furniture_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/furniture/furniture_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/gadgets/gadget_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/gadgets/gadget_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/gadgets/gadgets_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/gadgets/gadgets_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/materials/material_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/materials/material_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/materials/materials_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/materials/materials_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/monsters/monster_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/monsters/monster_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/monsters/monsters_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/monsters/monsters_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/resources/check_for_updates_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/resources/check_for_updates_result.dart -------------------------------------------------------------------------------- /lib/domain/models/db/resources/json_versions_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/resources/json_versions_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/translations/translation_element_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/translations/translation_element_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/translations/translation_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/translations/translation_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/translations/translation_monster_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/translations/translation_monster_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/translations/translation_weapon_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/translations/translation_weapon_file.dart -------------------------------------------------------------------------------- /lib/domain/models/db/weapons/weapon_file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/weapons/weapon_file_model.dart -------------------------------------------------------------------------------- /lib/domain/models/db/weapons/weapons_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/db/weapons/weapons_file.dart -------------------------------------------------------------------------------- /lib/domain/models/donations/package_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/donations/package_item_model.dart -------------------------------------------------------------------------------- /lib/domain/models/dtos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/dtos.dart -------------------------------------------------------------------------------- /lib/domain/models/dtos/api_list_response_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/dtos/api_list_response_dto.dart -------------------------------------------------------------------------------- /lib/domain/models/dtos/api_response_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/dtos/api_response_dto.dart -------------------------------------------------------------------------------- /lib/domain/models/dtos/empty_response_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/dtos/empty_response_dto.dart -------------------------------------------------------------------------------- /lib/domain/models/dtos/requests/base_request_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/dtos/requests/base_request_dto.dart -------------------------------------------------------------------------------- /lib/domain/models/dtos/responses/game_code_response_dto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/dtos/responses/game_code_response_dto.dart -------------------------------------------------------------------------------- /lib/domain/models/elements/element_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/elements/element_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/elements/element_reaction_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/elements/element_reaction_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/entities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/base_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/base_entity.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/calculator/calculator_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/calculator/calculator_item.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/calculator/calculator_session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/calculator/calculator_session.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/custom_builds/custom_build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/custom_builds/custom_build.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/game_code/game_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/game_code/game_code.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/game_code/game_code_reward.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/game_code/game_code_reward.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/inventory/inventory_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/inventory/inventory_item.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/inventory/inventory_used_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/inventory/inventory_used_item.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/telemetry/telemetry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/telemetry/telemetry.dart -------------------------------------------------------------------------------- /lib/domain/models/entities/tierlist/tierlist_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/entities/tierlist/tierlist_item.dart -------------------------------------------------------------------------------- /lib/domain/models/game_codes/game_code_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/game_codes/game_code_model.dart -------------------------------------------------------------------------------- /lib/domain/models/items/item_ascension_material_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/items/item_ascension_material_model.dart -------------------------------------------------------------------------------- /lib/domain/models/items/item_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/items/item_common.dart -------------------------------------------------------------------------------- /lib/domain/models/items/item_experience_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/items/item_experience_model.dart -------------------------------------------------------------------------------- /lib/domain/models/language_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/language_model.dart -------------------------------------------------------------------------------- /lib/domain/models/materials/material_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/materials/material_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/materials/sortable_grouped_material.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/materials/sortable_grouped_material.dart -------------------------------------------------------------------------------- /lib/domain/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/models.dart -------------------------------------------------------------------------------- /lib/domain/models/monsters/monster_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/monsters/monster_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/notifications/notification_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/notifications/notification_item.dart -------------------------------------------------------------------------------- /lib/domain/models/notifications/notification_item_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/notifications/notification_item_image.dart -------------------------------------------------------------------------------- /lib/domain/models/settings/app_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/settings/app_settings.dart -------------------------------------------------------------------------------- /lib/domain/models/sorting/sort_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/sorting/sort_result.dart -------------------------------------------------------------------------------- /lib/domain/models/sorting/sortable_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/sorting/sortable_item.dart -------------------------------------------------------------------------------- /lib/domain/models/tierlist/tierlist_row_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/tierlist/tierlist_row_model.dart -------------------------------------------------------------------------------- /lib/domain/models/weapons/weapon_ascension_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/weapons/weapon_ascension_model.dart -------------------------------------------------------------------------------- /lib/domain/models/weapons/weapon_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/weapons/weapon_card_model.dart -------------------------------------------------------------------------------- /lib/domain/models/weapons/weapon_file_refinement_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/models/weapons/weapon_file_refinement_model.dart -------------------------------------------------------------------------------- /lib/domain/services/api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/api_service.dart -------------------------------------------------------------------------------- /lib/domain/services/backup_restore_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/backup_restore_service.dart -------------------------------------------------------------------------------- /lib/domain/services/calculator_asc_materials_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/calculator_asc_materials_service.dart -------------------------------------------------------------------------------- /lib/domain/services/changelog_provider.dart: -------------------------------------------------------------------------------- 1 | abstract class ChangelogProvider { 2 | Future load(); 3 | } 4 | -------------------------------------------------------------------------------- /lib/domain/services/data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/data_service.dart -------------------------------------------------------------------------------- /lib/domain/services/device_info_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/device_info_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/artifact_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/artifact_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/banner_history_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/banner_history_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/base_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/base_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/character_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/character_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/element_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/element_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/file_infrastructure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/file_infrastructure.dart -------------------------------------------------------------------------------- /lib/domain/services/file/furniture_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/furniture_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/gadget_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/gadget_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/material_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/material_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/monster_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/monster_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/translation_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/translation_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/file/weapon_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/file/weapon_file_service.dart -------------------------------------------------------------------------------- /lib/domain/services/game_code_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/game_code_service.dart -------------------------------------------------------------------------------- /lib/domain/services/genshin_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/genshin_service.dart -------------------------------------------------------------------------------- /lib/domain/services/locale_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/locale_service.dart -------------------------------------------------------------------------------- /lib/domain/services/logging_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/logging_service.dart -------------------------------------------------------------------------------- /lib/domain/services/network_service.dart: -------------------------------------------------------------------------------- 1 | abstract class NetworkService { 2 | Future isInternetAvailable(); 3 | } 4 | -------------------------------------------------------------------------------- /lib/domain/services/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/notification_service.dart -------------------------------------------------------------------------------- /lib/domain/services/persistence/base_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/persistence/base_data_service.dart -------------------------------------------------------------------------------- /lib/domain/services/persistence/game_codes_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/persistence/game_codes_data_service.dart -------------------------------------------------------------------------------- /lib/domain/services/persistence/inventory_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/persistence/inventory_data_service.dart -------------------------------------------------------------------------------- /lib/domain/services/persistence/telemetry_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/persistence/telemetry_data_service.dart -------------------------------------------------------------------------------- /lib/domain/services/persistence/tier_list_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/persistence/tier_list_data_service.dart -------------------------------------------------------------------------------- /lib/domain/services/purchase_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/purchase_service.dart -------------------------------------------------------------------------------- /lib/domain/services/resources_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/resources_service.dart -------------------------------------------------------------------------------- /lib/domain/services/settings_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/settings_service.dart -------------------------------------------------------------------------------- /lib/domain/services/telemetry_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/services/telemetry_service.dart -------------------------------------------------------------------------------- /lib/domain/utils/currency_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/utils/currency_utils.dart -------------------------------------------------------------------------------- /lib/domain/utils/date_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/utils/date_utils.dart -------------------------------------------------------------------------------- /lib/domain/utils/filter_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/utils/filter_utils.dart -------------------------------------------------------------------------------- /lib/domain/utils/format_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/utils/format_utils.dart -------------------------------------------------------------------------------- /lib/domain/wish_banner_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/domain/wish_banner_constants.dart -------------------------------------------------------------------------------- /lib/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/env.dart -------------------------------------------------------------------------------- /lib/infrastructure/api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/api_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/app_infra_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/app_infra_constants.dart -------------------------------------------------------------------------------- /lib/infrastructure/backup_restore_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/backup_restore_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/calculator_asc_materials_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/calculator_asc_materials_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/changelog_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/changelog_provider.dart -------------------------------------------------------------------------------- /lib/infrastructure/device_info_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/device_info_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/artifact_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/artifact_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/banner_history_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/banner_history_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/character_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/character_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/element_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/element_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/file_infrastructure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/file_infrastructure.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/furniture_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/furniture_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/gadget_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/gadget_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/material_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/material_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/monster_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/monster_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/translation_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/translation_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/file/weapon_file_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/file/weapon_file_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/genshin_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/genshin_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/infrastructure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/infrastructure.dart -------------------------------------------------------------------------------- /lib/infrastructure/locale_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/locale_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/logging_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/logging_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/network_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/network_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/notification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/notification_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/persistence/data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/persistence/data_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/persistence/game_codes_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/persistence/game_codes_data_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/persistence/inventory_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/persistence/inventory_data_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/persistence/telemetry_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/persistence/telemetry_data_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/persistence/tier_list_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/persistence/tier_list_data_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/purchase_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/purchase_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/resources_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/resources_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/settings_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/settings_service.dart -------------------------------------------------------------------------------- /lib/infrastructure/telemetry_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/infrastructure/telemetry_service.dart -------------------------------------------------------------------------------- /lib/injection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/injection.dart -------------------------------------------------------------------------------- /lib/l10n/intl_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_de.arb -------------------------------------------------------------------------------- /lib/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_en.arb -------------------------------------------------------------------------------- /lib/l10n/intl_es_ES.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_es_ES.arb -------------------------------------------------------------------------------- /lib/l10n/intl_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_fr.arb -------------------------------------------------------------------------------- /lib/l10n/intl_id.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_id.arb -------------------------------------------------------------------------------- /lib/l10n/intl_it_IT.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_it_IT.arb -------------------------------------------------------------------------------- /lib/l10n/intl_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_ja.arb -------------------------------------------------------------------------------- /lib/l10n/intl_ko.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_ko.arb -------------------------------------------------------------------------------- /lib/l10n/intl_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_pt.arb -------------------------------------------------------------------------------- /lib/l10n/intl_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_ru.arb -------------------------------------------------------------------------------- /lib/l10n/intl_th.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_th.arb -------------------------------------------------------------------------------- /lib/l10n/intl_tr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_tr.arb -------------------------------------------------------------------------------- /lib/l10n/intl_uk.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_uk.arb -------------------------------------------------------------------------------- /lib/l10n/intl_vi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_vi.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh_CN.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_zh_CN.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh_TW.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/l10n/intl_zh_TW.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/presentation/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/app_widget.dart -------------------------------------------------------------------------------- /lib/presentation/artifact/artifact_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifact/artifact_page.dart -------------------------------------------------------------------------------- /lib/presentation/artifact/widgets/bonus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifact/widgets/bonus.dart -------------------------------------------------------------------------------- /lib/presentation/artifact/widgets/dropped_by.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifact/widgets/dropped_by.dart -------------------------------------------------------------------------------- /lib/presentation/artifact/widgets/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifact/widgets/main.dart -------------------------------------------------------------------------------- /lib/presentation/artifact/widgets/pieces.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifact/widgets/pieces.dart -------------------------------------------------------------------------------- /lib/presentation/artifact/widgets/used_by.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifact/widgets/used_by.dart -------------------------------------------------------------------------------- /lib/presentation/artifacts/artifacts_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifacts/artifacts_page.dart -------------------------------------------------------------------------------- /lib/presentation/artifacts/widgets/artifact_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifacts/widgets/artifact_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/artifacts/widgets/artifact_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifacts/widgets/artifact_card.dart -------------------------------------------------------------------------------- /lib/presentation/artifacts/widgets/artifact_info_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifacts/widgets/artifact_info_card.dart -------------------------------------------------------------------------------- /lib/presentation/artifacts/widgets/artifact_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/artifacts/widgets/artifact_stats.dart -------------------------------------------------------------------------------- /lib/presentation/backups/backups_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/backups/backups_page.dart -------------------------------------------------------------------------------- /lib/presentation/backups/widgets/backup_details_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/backups/widgets/backup_details_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/backups/widgets/backup_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/backups/widgets/backup_list_item.dart -------------------------------------------------------------------------------- /lib/presentation/banner_history_count/widgets/content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/banner_history_count/widgets/content.dart -------------------------------------------------------------------------------- /lib/presentation/character/character_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/character_page.dart -------------------------------------------------------------------------------- /lib/presentation/character/widgets/ascension_materials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/widgets/ascension_materials.dart -------------------------------------------------------------------------------- /lib/presentation/character/widgets/builds.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/widgets/builds.dart -------------------------------------------------------------------------------- /lib/presentation/character/widgets/constellations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/widgets/constellations.dart -------------------------------------------------------------------------------- /lib/presentation/character/widgets/description.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/widgets/description.dart -------------------------------------------------------------------------------- /lib/presentation/character/widgets/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/widgets/main.dart -------------------------------------------------------------------------------- /lib/presentation/character/widgets/passives.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/widgets/passives.dart -------------------------------------------------------------------------------- /lib/presentation/character/widgets/skills.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/character/widgets/skills.dart -------------------------------------------------------------------------------- /lib/presentation/characters/characters_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/characters/characters_page.dart -------------------------------------------------------------------------------- /lib/presentation/characters/widgets/character_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/characters/widgets/character_card.dart -------------------------------------------------------------------------------- /lib/presentation/charts/charts_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/charts/charts_page.dart -------------------------------------------------------------------------------- /lib/presentation/charts/widgets/chart_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/charts/widgets/chart_card.dart -------------------------------------------------------------------------------- /lib/presentation/charts/widgets/chart_legend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/charts/widgets/chart_legend.dart -------------------------------------------------------------------------------- /lib/presentation/charts/widgets/horizontal_bar_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/charts/widgets/horizontal_bar_chart.dart -------------------------------------------------------------------------------- /lib/presentation/charts/widgets/pie_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/charts/widgets/pie_chart.dart -------------------------------------------------------------------------------- /lib/presentation/charts/widgets/vertical_bar_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/charts/widgets/vertical_bar_chart.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/custom_build_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/custom_build_page.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/widgets/artifact_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/widgets/artifact_row.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/widgets/artifact_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/widgets/artifact_section.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/widgets/character_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/widgets/character_section.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/widgets/team_character_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/widgets/team_character_row.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/widgets/team_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/widgets/team_section.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/widgets/weapon_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/widgets/weapon_row.dart -------------------------------------------------------------------------------- /lib/presentation/custom_build/widgets/weapon_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_build/widgets/weapon_section.dart -------------------------------------------------------------------------------- /lib/presentation/custom_builds/custom_builds_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_builds/custom_builds_page.dart -------------------------------------------------------------------------------- /lib/presentation/custom_builds/widgets/custom_build_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/custom_builds/widgets/custom_build_card.dart -------------------------------------------------------------------------------- /lib/presentation/daily_check_in/daily_check_in_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/daily_check_in/daily_check_in_page.dart -------------------------------------------------------------------------------- /lib/presentation/desktop_tablet_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/desktop_tablet_scaffold.dart -------------------------------------------------------------------------------- /lib/presentation/donations/donations_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/donations/donations_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/elements/elements_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/elements/elements_page.dart -------------------------------------------------------------------------------- /lib/presentation/elements/widgets/element_debuff_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/elements/widgets/element_debuff_card.dart -------------------------------------------------------------------------------- /lib/presentation/elements/widgets/element_reaction_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/elements/widgets/element_reaction_card.dart -------------------------------------------------------------------------------- /lib/presentation/elements/widgets/sliver_element_debuffs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/elements/widgets/sliver_element_debuffs.dart -------------------------------------------------------------------------------- /lib/presentation/game_codes/game_codes_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/game_codes/game_codes_page.dart -------------------------------------------------------------------------------- /lib/presentation/game_codes/widgets/game_code_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/game_codes/widgets/game_code_list_item.dart -------------------------------------------------------------------------------- /lib/presentation/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/home_page.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/banner_history_count_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/banner_history_count_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/calculators_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/calculators_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/card_description.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/card_description.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/card_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/card_item.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/change_current_day_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/change_current_day_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/charts_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/charts_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/custom_builds_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/custom_builds_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/daily_check_in_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/daily_check_in_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/elements_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/elements_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/game_codes_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/game_codes_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/main_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/main_title.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/materials_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/materials_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/monsters_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/monsters_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/my_inventory_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/my_inventory_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/notifications_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/notifications_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/settings_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/sliver_main_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/sliver_main_title.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/sliver_today_main_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/sliver_today_main_title.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/tierlist_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/tierlist_card.dart -------------------------------------------------------------------------------- /lib/presentation/home/widgets/wish_simulator_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/home/widgets/wish_simulator_card.dart -------------------------------------------------------------------------------- /lib/presentation/inventory/inventory_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/inventory/inventory_page.dart -------------------------------------------------------------------------------- /lib/presentation/inventory/widgets/clear_all_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/inventory/widgets/clear_all_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/main_tab_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/main_tab_page.dart -------------------------------------------------------------------------------- /lib/presentation/map/map_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/map/map_page.dart -------------------------------------------------------------------------------- /lib/presentation/material/material_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/material/material_page.dart -------------------------------------------------------------------------------- /lib/presentation/material/widgets/characters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/material/widgets/characters.dart -------------------------------------------------------------------------------- /lib/presentation/material/widgets/dropped_by.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/material/widgets/dropped_by.dart -------------------------------------------------------------------------------- /lib/presentation/material/widgets/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/material/widgets/main.dart -------------------------------------------------------------------------------- /lib/presentation/material/widgets/obtained_from.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/material/widgets/obtained_from.dart -------------------------------------------------------------------------------- /lib/presentation/material/widgets/related_to.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/material/widgets/related_to.dart -------------------------------------------------------------------------------- /lib/presentation/material/widgets/weapons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/material/widgets/weapons.dart -------------------------------------------------------------------------------- /lib/presentation/materials/materials_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/materials/materials_page.dart -------------------------------------------------------------------------------- /lib/presentation/materials/widgets/material_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/materials/widgets/material_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/materials/widgets/material_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/materials/widgets/material_card.dart -------------------------------------------------------------------------------- /lib/presentation/mobile_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/mobile_scaffold.dart -------------------------------------------------------------------------------- /lib/presentation/monsters/monsters_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/monsters/monsters_page.dart -------------------------------------------------------------------------------- /lib/presentation/monsters/widgets/monster_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/monsters/widgets/monster_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/monsters/widgets/monster_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/monsters/widgets/monster_card.dart -------------------------------------------------------------------------------- /lib/presentation/notifications/notifications_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/notifications/notifications_page.dart -------------------------------------------------------------------------------- /lib/presentation/settings/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/settings_page.dart -------------------------------------------------------------------------------- /lib/presentation/settings/widgets/about_settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/widgets/about_settings_card.dart -------------------------------------------------------------------------------- /lib/presentation/settings/widgets/credits_settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/widgets/credits_settings_card.dart -------------------------------------------------------------------------------- /lib/presentation/settings/widgets/language_settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/widgets/language_settings_card.dart -------------------------------------------------------------------------------- /lib/presentation/settings/widgets/other_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/widgets/other_settings.dart -------------------------------------------------------------------------------- /lib/presentation/settings/widgets/settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/widgets/settings_card.dart -------------------------------------------------------------------------------- /lib/presentation/settings/widgets/settings_card_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/widgets/settings_card_content.dart -------------------------------------------------------------------------------- /lib/presentation/settings/widgets/theme_settings_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/settings/widgets/theme_settings_card.dart -------------------------------------------------------------------------------- /lib/presentation/shared/app_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/app_fab.dart -------------------------------------------------------------------------------- /lib/presentation/shared/app_webview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/app_webview.dart -------------------------------------------------------------------------------- /lib/presentation/shared/ascension_level.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/ascension_level.dart -------------------------------------------------------------------------------- /lib/presentation/shared/bottom_sheets/bottom_sheet_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/bottom_sheets/bottom_sheet_title.dart -------------------------------------------------------------------------------- /lib/presentation/shared/bottom_sheets/common_button_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/bottom_sheets/common_button_bar.dart -------------------------------------------------------------------------------- /lib/presentation/shared/bottom_sheets/right_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/bottom_sheets/right_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/shared/bullet_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/bullet_list.dart -------------------------------------------------------------------------------- /lib/presentation/shared/character_skill_priority.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/character_skill_priority.dart -------------------------------------------------------------------------------- /lib/presentation/shared/character_stack_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/character_stack_image.dart -------------------------------------------------------------------------------- /lib/presentation/shared/child_item_disabled.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/child_item_disabled.dart -------------------------------------------------------------------------------- /lib/presentation/shared/common_dropdown_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/common_dropdown_button.dart -------------------------------------------------------------------------------- /lib/presentation/shared/common_table_cell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/common_table_cell.dart -------------------------------------------------------------------------------- /lib/presentation/shared/custom_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/custom_divider.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_horizontal_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_horizontal_list.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_landscape_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_landscape_content.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_list_tile.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_main_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_main_card.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_main_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_main_content.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_materials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_materials.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_section.dart -------------------------------------------------------------------------------- /lib/presentation/shared/details/detail_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/details/detail_stats.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/changelog_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/changelog_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/confirm_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/confirm_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/dialog_list_item_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/dialog_list_item_row.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/info_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/info_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/item_quantity_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/item_quantity_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/number_picker_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/number_picker_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/select_enum_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/select_enum_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/select_stat_type_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/select_stat_type_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/sort_items_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/sort_items_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/dialogs/text_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/dialogs/text_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/shared/elements_button_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/elements_button_bar.dart -------------------------------------------------------------------------------- /lib/presentation/shared/extensions/i18n_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/extensions/i18n_extensions.dart -------------------------------------------------------------------------------- /lib/presentation/shared/extensions/rarity_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/extensions/rarity_extensions.dart -------------------------------------------------------------------------------- /lib/presentation/shared/gradient_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/gradient_card.dart -------------------------------------------------------------------------------- /lib/presentation/shared/hawk_fab_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/hawk_fab_menu.dart -------------------------------------------------------------------------------- /lib/presentation/shared/highlighted_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/highlighted_text.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/artifact_image_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/artifact_image_type.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/character_icon_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/character_icon_image.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/circle_item_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/circle_item_image.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/comingsoon_new_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/comingsoon_new_avatar.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/element_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/element_image.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/image_widget_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/image_widget_placeholder.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/monster_icon_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/monster_icon_image.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/primogem_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/primogem_icon.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/rarity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/rarity.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/square_item_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/square_item_image.dart -------------------------------------------------------------------------------- /lib/presentation/shared/images/weapon_icon_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/images/weapon_icon_image.dart -------------------------------------------------------------------------------- /lib/presentation/shared/increment_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/increment_button.dart -------------------------------------------------------------------------------- /lib/presentation/shared/item_counter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/item_counter.dart -------------------------------------------------------------------------------- /lib/presentation/shared/item_expansion_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/item_expansion_panel.dart -------------------------------------------------------------------------------- /lib/presentation/shared/item_popupmenu_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/item_popupmenu_filter.dart -------------------------------------------------------------------------------- /lib/presentation/shared/item_priority.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/item_priority.dart -------------------------------------------------------------------------------- /lib/presentation/shared/loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/loading.dart -------------------------------------------------------------------------------- /lib/presentation/shared/material_item_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/material_item_button.dart -------------------------------------------------------------------------------- /lib/presentation/shared/material_quantity_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/material_quantity_row.dart -------------------------------------------------------------------------------- /lib/presentation/shared/mixins/app_fab_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/mixins/app_fab_mixin.dart -------------------------------------------------------------------------------- /lib/presentation/shared/nothing_found.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/nothing_found.dart -------------------------------------------------------------------------------- /lib/presentation/shared/nothing_found_column.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/nothing_found_column.dart -------------------------------------------------------------------------------- /lib/presentation/shared/number_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/number_picker.dart -------------------------------------------------------------------------------- /lib/presentation/shared/page_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/page_message.dart -------------------------------------------------------------------------------- /lib/presentation/shared/rarity_rating.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/rarity_rating.dart -------------------------------------------------------------------------------- /lib/presentation/shared/requires_resources_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/requires_resources_widget.dart -------------------------------------------------------------------------------- /lib/presentation/shared/row_column_item_or.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/row_column_item_or.dart -------------------------------------------------------------------------------- /lib/presentation/shared/scaffold_with_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/scaffold_with_fab.dart -------------------------------------------------------------------------------- /lib/presentation/shared/search_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/search_box.dart -------------------------------------------------------------------------------- /lib/presentation/shared/shiori_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/shiori_icons.dart -------------------------------------------------------------------------------- /lib/presentation/shared/sliver_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/sliver_loading.dart -------------------------------------------------------------------------------- /lib/presentation/shared/sliver_nothing_found.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/sliver_nothing_found.dart -------------------------------------------------------------------------------- /lib/presentation/shared/sliver_page_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/sliver_page_filter.dart -------------------------------------------------------------------------------- /lib/presentation/shared/sliver_scaffold_with_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/sliver_scaffold_with_fab.dart -------------------------------------------------------------------------------- /lib/presentation/shared/smooth_star_rating.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/smooth_star_rating.dart -------------------------------------------------------------------------------- /lib/presentation/shared/sort_direction_popupmenu_filter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/sort_direction_popupmenu_filter.dart -------------------------------------------------------------------------------- /lib/presentation/shared/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/styles.dart -------------------------------------------------------------------------------- /lib/presentation/shared/sub_stats_to_focus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/sub_stats_to_focus.dart -------------------------------------------------------------------------------- /lib/presentation/shared/text_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/text_link.dart -------------------------------------------------------------------------------- /lib/presentation/shared/transform_tap_scale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/transform_tap_scale.dart -------------------------------------------------------------------------------- /lib/presentation/shared/unlock_with_donation_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/unlock_with_donation_text.dart -------------------------------------------------------------------------------- /lib/presentation/shared/utils/enum_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/utils/enum_utils.dart -------------------------------------------------------------------------------- /lib/presentation/shared/utils/modal_bottom_sheet_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/utils/modal_bottom_sheet_utils.dart -------------------------------------------------------------------------------- /lib/presentation/shared/utils/permission_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/utils/permission_utils.dart -------------------------------------------------------------------------------- /lib/presentation/shared/utils/screenshot_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/utils/screenshot_utils.dart -------------------------------------------------------------------------------- /lib/presentation/shared/utils/size_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/utils/size_utils.dart -------------------------------------------------------------------------------- /lib/presentation/shared/utils/toast_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/utils/toast_utils.dart -------------------------------------------------------------------------------- /lib/presentation/shared/weapons_button_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/shared/weapons_button_bar.dart -------------------------------------------------------------------------------- /lib/presentation/splash/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/splash/splash_page.dart -------------------------------------------------------------------------------- /lib/presentation/tierlist/tier_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/tierlist/tier_list_page.dart -------------------------------------------------------------------------------- /lib/presentation/tierlist/widgets/rename_tierlist_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/tierlist/widgets/rename_tierlist_dialog.dart -------------------------------------------------------------------------------- /lib/presentation/tierlist/widgets/tierlist_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/tierlist/widgets/tierlist_fab.dart -------------------------------------------------------------------------------- /lib/presentation/tierlist/widgets/tierlist_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/tierlist/widgets/tierlist_row.dart -------------------------------------------------------------------------------- /lib/presentation/today_materials/today_materials_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/today_materials/today_materials_page.dart -------------------------------------------------------------------------------- /lib/presentation/weapon/weapon_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapon/weapon_page.dart -------------------------------------------------------------------------------- /lib/presentation/weapon/widgets/ascension_materials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapon/widgets/ascension_materials.dart -------------------------------------------------------------------------------- /lib/presentation/weapon/widgets/builds.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapon/widgets/builds.dart -------------------------------------------------------------------------------- /lib/presentation/weapon/widgets/crafting_materials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapon/widgets/crafting_materials.dart -------------------------------------------------------------------------------- /lib/presentation/weapon/widgets/description.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapon/widgets/description.dart -------------------------------------------------------------------------------- /lib/presentation/weapon/widgets/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapon/widgets/main.dart -------------------------------------------------------------------------------- /lib/presentation/weapon/widgets/refinements.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapon/widgets/refinements.dart -------------------------------------------------------------------------------- /lib/presentation/weapons/weapons_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapons/weapons_page.dart -------------------------------------------------------------------------------- /lib/presentation/weapons/widgets/weapon_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapons/widgets/weapon_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/weapons/widgets/weapon_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/weapons/widgets/weapon_card.dart -------------------------------------------------------------------------------- /lib/presentation/wish_simulator/widgets/banner_top_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/wish_simulator/widgets/banner_top_image.dart -------------------------------------------------------------------------------- /lib/presentation/wish_simulator/widgets/wish_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/wish_simulator/widgets/wish_button.dart -------------------------------------------------------------------------------- /lib/presentation/wish_simulator/widgets/wish_result_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/wish_simulator/widgets/wish_result_item.dart -------------------------------------------------------------------------------- /lib/presentation/wish_simulator/wish_result_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/wish_simulator/wish_result_page.dart -------------------------------------------------------------------------------- /lib/presentation/wish_simulator/wish_simulator_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/lib/presentation/wish_simulator/wish_simulator_page.dart -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /run_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_build.sh -------------------------------------------------------------------------------- /run_build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_build_android.sh -------------------------------------------------------------------------------- /run_build_ios.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | echo 'Creating ios ipa...' 5 | fvm flutter build ipa -------------------------------------------------------------------------------- /run_build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_build_macos.sh -------------------------------------------------------------------------------- /run_build_windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_build_windows.sh -------------------------------------------------------------------------------- /run_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_clean.sh -------------------------------------------------------------------------------- /run_integration_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_integration_tests.sh -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_tests.sh -------------------------------------------------------------------------------- /run_tests_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/run_tests_coverage.sh -------------------------------------------------------------------------------- /test/application/artifact/artifact_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/artifact/artifact_bloc_test.dart -------------------------------------------------------------------------------- /test/application/artifacts/artifacts_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/artifacts/artifacts_bloc_test.dart -------------------------------------------------------------------------------- /test/application/backup_restore/backup_restore_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/backup_restore/backup_restore_bloc_test.dart -------------------------------------------------------------------------------- /test/application/changelog/changelog_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/changelog/changelog_bloc_test.dart -------------------------------------------------------------------------------- /test/application/character/character_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/character/character_bloc_test.dart -------------------------------------------------------------------------------- /test/application/characters/characters_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/characters/characters_bloc_test.dart -------------------------------------------------------------------------------- /test/application/charts/genders/chart_genders_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/charts/genders/chart_genders_bloc_test.dart -------------------------------------------------------------------------------- /test/application/charts/regions/chart_regions_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/charts/regions/chart_regions_bloc_test.dart -------------------------------------------------------------------------------- /test/application/charts/tops/chart_tops_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/charts/tops/chart_tops_bloc_test.dart -------------------------------------------------------------------------------- /test/application/custom_build/custom_build_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/custom_build/custom_build_bloc_test.dart -------------------------------------------------------------------------------- /test/application/custom_builds/custom_builds_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/custom_builds/custom_builds_bloc_test.dart -------------------------------------------------------------------------------- /test/application/donations/donations_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/donations/donations_bloc_test.dart -------------------------------------------------------------------------------- /test/application/elements/elements_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/elements/elements_bloc_test.dart -------------------------------------------------------------------------------- /test/application/game_codes/game_codes_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/game_codes/game_codes_bloc_test.dart -------------------------------------------------------------------------------- /test/application/home/home_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/home/home_bloc_test.dart -------------------------------------------------------------------------------- /test/application/inventory/inventory_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/inventory/inventory_bloc_test.dart -------------------------------------------------------------------------------- /test/application/main/main_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/main/main_bloc_test.dart -------------------------------------------------------------------------------- /test/application/main_tab/main_tab_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/main_tab/main_tab_bloc_test.dart -------------------------------------------------------------------------------- /test/application/material/material_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/material/material_bloc_test.dart -------------------------------------------------------------------------------- /test/application/materials/materials_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/materials/materials_bloc_test.dart -------------------------------------------------------------------------------- /test/application/monsters/monsters_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/monsters/monsters_bloc_test.dart -------------------------------------------------------------------------------- /test/application/notification/notification_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/notification/notification_bloc_test.dart -------------------------------------------------------------------------------- /test/application/notifications/notifications_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/notifications/notifications_bloc_test.dart -------------------------------------------------------------------------------- /test/application/settings/settings_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/settings/settings_bloc_test.dart -------------------------------------------------------------------------------- /test/application/splash/splash_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/splash/splash_bloc_test.dart -------------------------------------------------------------------------------- /test/application/tier_list/tier_list_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/tier_list/tier_list_bloc_test.dart -------------------------------------------------------------------------------- /test/application/tier_list_form/tier_list_form_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/tier_list_form/tier_list_form_bloc_test.dart -------------------------------------------------------------------------------- /test/application/url_page/url_page_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/url_page/url_page_bloc_test.dart -------------------------------------------------------------------------------- /test/application/weapon/weapon_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/weapon/weapon_bloc_test.dart -------------------------------------------------------------------------------- /test/application/weapons/weapons_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/weapons/weapons_bloc_test.dart -------------------------------------------------------------------------------- /test/application/wish_simulator/wish_simulator_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/application/wish_simulator/wish_simulator_bloc_test.dart -------------------------------------------------------------------------------- /test/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/common.dart -------------------------------------------------------------------------------- /test/dummy_mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/dummy_mocks.dart -------------------------------------------------------------------------------- /test/fake_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/fake_test.dart -------------------------------------------------------------------------------- /test/infrastructure/backup_restore_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/backup_restore_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/artifact_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/artifact_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/banner_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/banner_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/character_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/character_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/common_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/common_file.dart -------------------------------------------------------------------------------- /test/infrastructure/file/elements_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/elements_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/materials_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/materials_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/monster_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/monster_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/translation_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/translation_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/file/weapon_file_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/file/weapon_file_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/genshin_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/genshin_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/locale_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/locale_service_test.dart -------------------------------------------------------------------------------- /test/infrastructure/resource_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/infrastructure/resource_service_test.dart -------------------------------------------------------------------------------- /test/mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/mocks.dart -------------------------------------------------------------------------------- /test/nice_mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/test/nice_mocks.dart -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wolfteam/Shiori/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------