├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yaml └── workflows │ └── release.yml ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── README_CN.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── cloudchewie │ │ │ └── loftify │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-hdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-mdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-night-hdpi │ │ └── android12splash.png │ │ ├── drawable-night-mdpi │ │ └── android12splash.png │ │ ├── drawable-night-v21 │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── drawable-night-xhdpi │ │ └── android12splash.png │ │ ├── drawable-night-xxhdpi │ │ └── android12splash.png │ │ ├── drawable-night-xxxhdpi │ │ └── android12splash.png │ │ ├── drawable-night │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── drawable-v21 │ │ ├── background.png │ │ └── launch_background.xml │ │ ├── drawable-xhdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-xxhdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable-xxxhdpi │ │ ├── android12splash.png │ │ └── splash.png │ │ ├── drawable │ │ ├── background.png │ │ ├── ic_launcher_foreground.xml │ │ └── launch_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night-v31 │ │ └── styles.xml │ │ ├── values-night │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── values-v31 │ │ └── styles.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ └── styles.xml │ │ └── xml │ │ └── network_security_config.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── Lofter-asset.zip ├── avatar.png ├── icon │ ├── code.txt │ ├── collection_dark.png │ ├── collection_light.png │ ├── collection_primary.png │ ├── collection_white.png │ ├── confirm.png │ ├── download_white.png │ ├── dress_dark.png │ ├── dress_light.png │ ├── dynamic_dark.png │ ├── dynamic_dark_selected.png │ ├── dynamic_light.png │ ├── dynamic_light_selected.png │ ├── favorite_dark.png │ ├── favorite_light.png │ ├── grain_white.png │ ├── home_dark.png │ ├── home_dark_selected.png │ ├── home_light.png │ ├── home_light_selected.png │ ├── hot.png │ ├── hot_white.png │ ├── hotless.png │ ├── hottest.png │ ├── info.png │ ├── like_dark.png │ ├── like_filled.png │ ├── like_light.png │ ├── link_dark.png │ ├── link_grey.png │ ├── link_light.png │ ├── link_primary.png │ ├── link_white.png │ ├── mine_dark.png │ ├── mine_dark_selected.png │ ├── mine_light.png │ ├── mine_light_selected.png │ ├── order_down_dark.png │ ├── order_down_light.png │ ├── order_up_dark.png │ ├── order_up_light.png │ ├── pin_dark.png │ ├── pin_light.png │ ├── run.py │ ├── search_dark.png │ ├── search_grey.png │ ├── search_light.png │ ├── setting_dark.png │ ├── setting_light.png │ ├── tag_dark.png │ ├── tag_grey.png │ ├── tag_light.png │ └── tag_white.png ├── illust │ ├── code.txt │ ├── collection_dark.webp │ ├── collection_light.webp │ ├── dress_dark.webp │ ├── dress_light.webp │ ├── favorite_dark.png │ ├── favorite_light.png │ ├── flag_dark.webp │ ├── flag_dark_2.webp │ ├── flag_light.webp │ ├── flag_light_2.webp │ ├── hot_dark.webp │ ├── hot_light.webp │ ├── like_dark.png │ ├── like_light.png │ ├── lofter_dark.png │ ├── lofter_light.png │ ├── pigeon_dark.png │ ├── pigeon_light.png │ ├── run.py │ ├── star_dark.png │ ├── star_light.png │ ├── tag_dark.webp │ ├── tag_light.webp │ ├── thumb_dark.png │ └── thumb_light.png ├── logo-transparent-big.ico ├── logo-transparent-big.png ├── logo-transparent.png ├── logo.png ├── logo.svg ├── lottie │ ├── brightness.json │ ├── celebrate.json │ ├── code.txt │ ├── collection_big_normal_dark.json │ ├── collection_big_normal_light.json │ ├── collection_medium_normal_dark.json │ ├── collection_medium_normal_light.json │ ├── follow_dark.json │ ├── follow_light.json │ ├── follow_video.json │ ├── gift_dark.json │ ├── letter.json │ ├── like_big_normal_dark.json │ ├── like_big_normal_light.json │ ├── like_double_click_dark.json │ ├── like_double_click_light.json │ ├── like_double_tap.json │ ├── like_medium_dark.json │ ├── like_medium_light.json │ ├── like_vibrate_light.json │ ├── like_video_normal.json │ ├── like_video_vibrate.json │ ├── loading_01.json │ ├── loading_02.json │ ├── loading_dark.json │ ├── loading_dark_transparent.json │ ├── loading_gradient.json │ ├── loading_light.json │ ├── moon_light.json │ ├── recommend_big_normal_dark.json │ ├── recommend_big_normal_light.json │ ├── recommend_big_vibrate_dark.json │ ├── recommend_big_vibrate_light.json │ ├── recommend_medium_focus_dark.json │ ├── recommend_medium_focus_light.json │ ├── recommend_video_normal.json │ ├── run.py │ ├── share_video_vibrate.json │ ├── shine.json │ ├── sun_light.json │ ├── video_playing_dark.json │ └── video_playing_light.json └── mess │ ├── code.txt │ ├── empty.png │ ├── run.py │ ├── tag_icon_bg.png │ ├── tag_row_bg.png │ └── tag_row_bg_dark.png ├── devtools_options.yaml ├── dll ├── msvcp140.dll ├── sqlite3.dll ├── vcruntime140.dll └── vcruntime140_1.dll ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── LaunchBackground.imageset │ │ │ ├── Contents.json │ │ │ ├── background.png │ │ │ └── darkbackground.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── l10n.yaml ├── lib ├── Api │ ├── collection_api.dart │ ├── dress_api.dart │ ├── gift_api.dart │ ├── grain_api.dart │ ├── image_api.dart │ ├── login_api.dart │ ├── message_api.dart │ ├── post_api.dart │ ├── recommend_api.dart │ ├── search_api.dart │ ├── server_api.dart │ ├── setting_api.dart │ ├── tag_api.dart │ └── user_api.dart ├── Database │ ├── create_table_sql.dart │ └── database_manager.dart ├── Models │ ├── account_response.dart │ ├── cloud_control.dart │ ├── collection_response.dart │ ├── dress_response.dart │ ├── dynamic_response.dart │ ├── favorites_response.dart │ ├── gift_response.dart │ ├── grain_response.dart │ ├── history_response.dart │ ├── illust.dart │ ├── login_lofterid_response.dart │ ├── login_response.dart │ ├── message_response.dart │ ├── post_detail_response.dart │ ├── recommend_response.dart │ ├── return_gift_response.dart │ ├── search_response.dart │ ├── show_case_response.dart │ ├── simple_response.dart │ ├── suit_response.dart │ ├── tag_response.dart │ └── user_response.dart ├── Screens │ ├── Info │ │ ├── collection_screen.dart │ │ ├── favorite_folder_detail_screen.dart │ │ ├── favorite_folder_list_screen.dart │ │ ├── following_follower_screen.dart │ │ ├── grain_screen.dart │ │ ├── history_screen.dart │ │ ├── like_screen.dart │ │ ├── nested_mixin.dart │ │ ├── post_screen.dart │ │ ├── share_screen.dart │ │ ├── supporter_screen.dart │ │ ├── system_notice_screen.dart │ │ └── user_detail_screen.dart │ ├── Lock │ │ ├── pin_change_screen.dart │ │ └── pin_verify_screen.dart │ ├── Login │ │ ├── login_by_captcha_screen.dart │ │ ├── login_by_lofterid_screen.dart │ │ ├── login_by_mail_screen.dart │ │ └── login_by_password_screen.dart │ ├── Navigation │ │ ├── dynamic_screen.dart │ │ ├── home_screen.dart │ │ ├── mine_screen.dart │ │ └── search_screen.dart │ ├── Post │ │ ├── collection_detail_screen.dart │ │ ├── grain_detail_screen.dart │ │ ├── post_detail_screen.dart │ │ ├── search_result_screen.dart │ │ ├── tag_collection_grain_screen.dart │ │ ├── tag_detail_screen.dart │ │ ├── tag_insearch_screen.dart │ │ ├── tag_related_screen.dart │ │ ├── video_detail_screen.dart │ │ └── video_list_controller.dart │ ├── Setting │ │ ├── about_setting_screen.dart │ │ ├── apperance_setting_screen.dart │ │ ├── base_setting_screen.dart │ │ ├── blacklist_setting_screen.dart │ │ ├── egg_screen.dart │ │ ├── experiment_setting_screen.dart │ │ ├── filename_setting_screen.dart │ │ ├── general_setting_screen.dart │ │ ├── image_setting_screen.dart │ │ ├── lofter_basic_setting_screen.dart │ │ ├── mobile_setting_navigation_screen.dart │ │ ├── select_font_screen.dart │ │ ├── select_theme_screen.dart │ │ ├── setting_navigation_screen.dart │ │ ├── setting_screen.dart │ │ ├── tagshield_setting_screen.dart │ │ └── userdynamicshield_setting_screen.dart │ ├── Suit │ │ ├── custom_bg_avatar_list_screen.dart │ │ ├── custom_dress_list_screen.dart │ │ ├── dress_detail_screen.dart │ │ ├── dress_screen.dart │ │ ├── dress_suit_list_screen.dart │ │ ├── emote_detail_screen.dart │ │ ├── suit_screen.dart │ │ └── user_market_screen.dart │ ├── main_screen.dart │ └── panel_screen.dart ├── Utils │ ├── app_provider.dart │ ├── asset_util.dart │ ├── cloud_control_provider.dart │ ├── constant.dart │ ├── enums.dart │ ├── hive_util.dart │ ├── lottie_files.dart │ ├── request_header_util.dart │ ├── request_util.dart │ ├── shortcuts_util.dart │ ├── uri_util.dart │ └── utils.dart ├── Widgets │ ├── BottomSheet │ │ ├── collection_bottom_sheet.dart │ │ ├── comment_bottom_sheet.dart │ │ ├── custom_bg_avatar_detail_bottom_sheet.dart │ │ ├── newest_filter_bottom_sheet.dart │ │ ├── shield_bottom_sheet.dart │ │ ├── slide_captcha_bottom_sheet.dart │ │ └── subscribe_post_bottom_sheet.dart │ ├── Item │ │ ├── item_builder.dart │ │ └── loftify_item_builder.dart │ ├── PostItem │ │ ├── common_info_post_item_builder.dart │ │ ├── favorite_folder_post_item_builder.dart │ │ ├── general_post_item_builder.dart │ │ ├── grain_post_item_builder.dart │ │ ├── image_grid.dart │ │ ├── recommend_flow_item_builder.dart │ │ └── search_post_flow_item_builder.dart │ └── Shortcuts │ │ ├── app_shortcuts.dart │ │ └── keyboard_widget.dart ├── l10n │ ├── intl_en.arb │ ├── intl_zh.arb │ ├── intl_zh_CN.arb │ ├── intl_zh_TW.arb │ └── l10n.dart └── main.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── 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 │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── third-party ├── chewie │ ├── build │ │ ├── .last_build_id │ │ └── ae30582a806dc4248fd237072391b5a0 │ │ │ ├── .filecache │ │ │ ├── gen_l10n_inputs_and_outputs.json │ │ │ ├── gen_localizations.d │ │ │ ├── gen_localizations.stamp │ │ │ └── outputs.json │ ├── l10n.yaml │ ├── lib │ │ ├── awesome_chewie.dart │ │ ├── gen-export.dart │ │ ├── gen_export.dart │ │ └── src │ │ │ ├── Api │ │ │ └── github_api.dart │ │ │ ├── Models │ │ │ ├── github_response.dart │ │ │ ├── refresh_interface.dart │ │ │ ├── response_result.dart │ │ │ ├── selection_item_model.dart │ │ │ ├── sortable_item.dart │ │ │ └── tab_item_data.dart │ │ │ ├── Providers │ │ │ └── chewie_provider.dart │ │ │ ├── Resources │ │ │ ├── colors.dart │ │ │ ├── dimens.dart │ │ │ ├── fonts.dart │ │ │ ├── styles.dart │ │ │ ├── theme.dart │ │ │ └── theme_color_data.dart │ │ │ ├── Screens │ │ │ ├── update_log_screen.dart │ │ │ ├── update_screen.dart │ │ │ └── webview_screen.dart │ │ │ ├── Utils │ │ │ ├── General │ │ │ │ ├── color_util.dart │ │ │ │ ├── crypt_util.dart │ │ │ │ ├── html_util.dart │ │ │ │ ├── jwt_decoder.dart │ │ │ │ ├── mock_util.dart │ │ │ │ ├── number_util.dart │ │ │ │ ├── responsive_util.dart │ │ │ │ ├── string_util.dart │ │ │ │ ├── time_util.dart │ │ │ │ └── web_util.dart │ │ │ ├── System │ │ │ │ ├── asset_util.dart │ │ │ │ ├── cache_util.dart │ │ │ │ ├── export_util.dart │ │ │ │ ├── file_util.dart │ │ │ │ ├── font_util.dart │ │ │ │ ├── hive_util.dart │ │ │ │ ├── import_util.dart │ │ │ │ ├── locale_util.dart │ │ │ │ ├── lottie_util.dart │ │ │ │ ├── route_util.dart │ │ │ │ └── uri_util.dart │ │ │ ├── constant.dart │ │ │ ├── enums.dart │ │ │ ├── ilogger.dart │ │ │ ├── iprint.dart │ │ │ ├── itoast.dart │ │ │ └── utils.dart │ │ │ ├── Widgets │ │ │ ├── Animation │ │ │ │ ├── animated_fade.dart │ │ │ │ ├── animated_overlay.dart │ │ │ │ ├── animated_slide.dart │ │ │ │ ├── dialog_animation.dart │ │ │ │ ├── hero_text.dart │ │ │ │ ├── index.dart │ │ │ │ ├── ink_animation.dart │ │ │ │ └── pressable_animation.dart │ │ │ ├── Basic │ │ │ │ ├── custom_mouse_region.dart │ │ │ │ ├── hero_photo_view_screen.dart │ │ │ │ ├── index.dart │ │ │ │ ├── indexed_list_view.dart │ │ │ │ ├── item_builder.dart │ │ │ │ ├── load_more_notification.dart │ │ │ │ ├── marquee_widget.dart │ │ │ │ ├── mouse_state_builder.dart │ │ │ │ ├── multi_tappable.dart │ │ │ │ ├── no_shadow_scroll_behavior.dart │ │ │ │ └── underlined_tab_indicator.dart │ │ │ ├── BottomSheet │ │ │ │ ├── bottom_sheet_builder.dart │ │ │ │ ├── bottom_sheet_wrapper_widget.dart │ │ │ │ ├── context_menu_bottom_sheet.dart │ │ │ │ ├── index.dart │ │ │ │ ├── input_bottom_sheet.dart │ │ │ │ └── star_bottom_sheet.dart │ │ │ ├── Button │ │ │ │ ├── circle_icon_button.dart │ │ │ │ ├── hover_icon_button.dart │ │ │ │ ├── index.dart │ │ │ │ ├── outlined_button.dart │ │ │ │ ├── round_icon_button.dart │ │ │ │ ├── round_icon_text_button.dart │ │ │ │ ├── shadow_icon_button.dart │ │ │ │ ├── toggle_icon_button.dart │ │ │ │ └── window_button.dart │ │ │ ├── Component │ │ │ │ ├── anchor.dart │ │ │ │ ├── auto_image.dart │ │ │ │ ├── custom_html_widget.dart │ │ │ │ ├── custom_markdown_widget.dart │ │ │ │ ├── fade_shimmer.dart │ │ │ │ ├── github_calendar.dart │ │ │ │ ├── index.dart │ │ │ │ ├── keyboard_navigable_wrapper.dart │ │ │ │ ├── loading_icon.dart │ │ │ │ ├── my_cached_network_image.dart │ │ │ │ ├── progress_bar.dart │ │ │ │ ├── search_bar.dart │ │ │ │ ├── selectable_reorderable_listview.dart │ │ │ │ ├── star_rating.dart │ │ │ │ └── translucent_tag.dart │ │ │ ├── Dialog │ │ │ │ ├── components │ │ │ │ │ ├── animations.dart │ │ │ │ │ └── colors.dart │ │ │ │ ├── custom_dialog.dart │ │ │ │ ├── dialog_builder.dart │ │ │ │ ├── dialog_navigator_helper.dart │ │ │ │ ├── index.dart │ │ │ │ └── widgets │ │ │ │ │ ├── custom_confirm_dialog_widget.dart │ │ │ │ │ ├── custom_info_dialog_widget.dart │ │ │ │ │ ├── dialog_wrapper_widget.dart │ │ │ │ │ ├── loading_dialog_widget.dart │ │ │ │ │ └── progress_dialog_widget.dart │ │ │ ├── General │ │ │ │ ├── animated_sidebar_container.dart │ │ │ │ ├── appbar_wrapper.dart │ │ │ │ ├── clickable_gesture_detector.dart │ │ │ │ ├── clickable_wrapper.dart │ │ │ │ ├── dropdown_wrapper.dart │ │ │ │ ├── empty_placeholder.dart │ │ │ │ ├── error_widget.dart │ │ │ │ ├── index.dart │ │ │ │ ├── loading_widget.dart │ │ │ │ ├── my_divider.dart │ │ │ │ ├── number_field.dart │ │ │ │ ├── responsive_app_bar.dart │ │ │ │ ├── selectable_area_wrapper.dart │ │ │ │ ├── sliver_appbar_wrapper.dart │ │ │ │ ├── subordinate_scroll_controller.dart │ │ │ │ ├── tab_bar_wrapper.dart │ │ │ │ └── tooltip_wrapper.dart │ │ │ ├── Module │ │ │ │ ├── AnimatedCustomDropdown │ │ │ │ │ ├── custom_dropdown.dart │ │ │ │ │ ├── models │ │ │ │ │ │ ├── controllers.dart │ │ │ │ │ │ ├── custom_dropdown_decoration.dart │ │ │ │ │ │ ├── custom_dropdown_list_filter.dart │ │ │ │ │ │ ├── disabled_decoration.dart │ │ │ │ │ │ ├── dropdown_mixin.dart │ │ │ │ │ │ ├── list_item_decoration.dart │ │ │ │ │ │ ├── search_field_decoration.dart │ │ │ │ │ │ └── selection_item_model.dart │ │ │ │ │ ├── utils │ │ │ │ │ │ └── signatures.dart │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── animated_section.dart │ │ │ │ │ │ ├── dropdown_field.dart │ │ │ │ │ │ ├── dropdown_overlay │ │ │ │ │ │ ├── dropdown_overlay.dart │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ ├── items_list.dart │ │ │ │ │ │ │ └── search_field.dart │ │ │ │ │ │ └── overlay_builder.dart │ │ │ │ ├── CodeHighlightView │ │ │ │ │ ├── code_highlight_view.dart │ │ │ │ │ ├── index.dart │ │ │ │ │ ├── theme_map.dart │ │ │ │ │ └── themes │ │ │ │ │ │ ├── a11y-dark.dart │ │ │ │ │ │ ├── a11y-light.dart │ │ │ │ │ │ ├── agate.dart │ │ │ │ │ │ ├── an-old-hope.dart │ │ │ │ │ │ ├── androidstudio.dart │ │ │ │ │ │ ├── arduino-light.dart │ │ │ │ │ │ ├── arta.dart │ │ │ │ │ │ ├── ascetic.dart │ │ │ │ │ │ ├── atelier-cave-dark.dart │ │ │ │ │ │ ├── atelier-cave-light.dart │ │ │ │ │ │ ├── atelier-dune-dark.dart │ │ │ │ │ │ ├── atelier-dune-light.dart │ │ │ │ │ │ ├── atelier-estuary-dark.dart │ │ │ │ │ │ ├── atelier-estuary-light.dart │ │ │ │ │ │ ├── atelier-forest-dark.dart │ │ │ │ │ │ ├── atelier-forest-light.dart │ │ │ │ │ │ ├── atelier-heath-dark.dart │ │ │ │ │ │ ├── atelier-heath-light.dart │ │ │ │ │ │ ├── atelier-lakeside-dark.dart │ │ │ │ │ │ ├── atelier-lakeside-light.dart │ │ │ │ │ │ ├── atelier-plateau-dark.dart │ │ │ │ │ │ ├── atelier-plateau-light.dart │ │ │ │ │ │ ├── atelier-savanna-dark.dart │ │ │ │ │ │ ├── atelier-savanna-light.dart │ │ │ │ │ │ ├── atelier-seaside-dark.dart │ │ │ │ │ │ ├── atelier-seaside-light.dart │ │ │ │ │ │ ├── atelier-sulphurpool-dark.dart │ │ │ │ │ │ ├── atelier-sulphurpool-light.dart │ │ │ │ │ │ ├── atom-one-dark-reasonable.dart │ │ │ │ │ │ ├── atom-one-dark.dart │ │ │ │ │ │ ├── atom-one-light.dart │ │ │ │ │ │ ├── brown-paper.dart │ │ │ │ │ │ ├── codepen-embed.dart │ │ │ │ │ │ ├── color-brewer.dart │ │ │ │ │ │ ├── darcula.dart │ │ │ │ │ │ ├── dark.dart │ │ │ │ │ │ ├── default.dart │ │ │ │ │ │ ├── docco.dart │ │ │ │ │ │ ├── dracula.dart │ │ │ │ │ │ ├── far.dart │ │ │ │ │ │ ├── foundation.dart │ │ │ │ │ │ ├── github-gist.dart │ │ │ │ │ │ ├── github.dart │ │ │ │ │ │ ├── gml.dart │ │ │ │ │ │ ├── googlecode.dart │ │ │ │ │ │ ├── gradient-dark.dart │ │ │ │ │ │ ├── grayscale.dart │ │ │ │ │ │ ├── gruvbox-dark.dart │ │ │ │ │ │ ├── gruvbox-light.dart │ │ │ │ │ │ ├── hopscotch.dart │ │ │ │ │ │ ├── hybrid.dart │ │ │ │ │ │ ├── idea.dart │ │ │ │ │ │ ├── ir-black.dart │ │ │ │ │ │ ├── isbl-editor-dark.dart │ │ │ │ │ │ ├── isbl-editor-light.dart │ │ │ │ │ │ ├── kimbie.dark.dart │ │ │ │ │ │ ├── kimbie.light.dart │ │ │ │ │ │ ├── lightfair.dart │ │ │ │ │ │ ├── magula.dart │ │ │ │ │ │ ├── mono-blue.dart │ │ │ │ │ │ ├── monokai-sublime.dart │ │ │ │ │ │ ├── monokai.dart │ │ │ │ │ │ ├── night-owl.dart │ │ │ │ │ │ ├── nord.dart │ │ │ │ │ │ ├── obsidian.dart │ │ │ │ │ │ ├── ocean.dart │ │ │ │ │ │ ├── paraiso-dark.dart │ │ │ │ │ │ ├── paraiso-light.dart │ │ │ │ │ │ ├── pojoaque.dart │ │ │ │ │ │ ├── purebasic.dart │ │ │ │ │ │ ├── qtcreator_dark.dart │ │ │ │ │ │ ├── qtcreator_light.dart │ │ │ │ │ │ ├── railscasts.dart │ │ │ │ │ │ ├── rainbow.dart │ │ │ │ │ │ ├── routeros.dart │ │ │ │ │ │ ├── school-book.dart │ │ │ │ │ │ ├── shades-of-purple.dart │ │ │ │ │ │ ├── solarized-dark.dart │ │ │ │ │ │ ├── solarized-light.dart │ │ │ │ │ │ ├── sunburst.dart │ │ │ │ │ │ ├── tomorrow-night-blue.dart │ │ │ │ │ │ ├── tomorrow-night-bright.dart │ │ │ │ │ │ ├── tomorrow-night-eighties.dart │ │ │ │ │ │ ├── tomorrow-night.dart │ │ │ │ │ │ ├── tomorrow.dart │ │ │ │ │ │ ├── vs.dart │ │ │ │ │ │ ├── vs2015.dart │ │ │ │ │ │ ├── xcode.dart │ │ │ │ │ │ ├── xt256.dart │ │ │ │ │ │ └── zenburn.dart │ │ │ │ ├── CustomSlidingSegmentedControl │ │ │ │ │ ├── custom_sliding_segmented_control.dart │ │ │ │ │ └── src │ │ │ │ │ │ ├── animation_panel.dart │ │ │ │ │ │ ├── cache.dart │ │ │ │ │ │ ├── compute_offset.dart │ │ │ │ │ │ ├── custom_segmented_controller.dart │ │ │ │ │ │ ├── divider_settings.dart │ │ │ │ │ │ ├── measure_size.dart │ │ │ │ │ │ ├── segment_settings.dart │ │ │ │ │ │ └── widget.dart │ │ │ │ ├── Draggable │ │ │ │ │ ├── drag_and_drop_builder_parameters.dart │ │ │ │ │ ├── drag_and_drop_interface.dart │ │ │ │ │ ├── drag_and_drop_item.dart │ │ │ │ │ ├── drag_and_drop_item_target.dart │ │ │ │ │ ├── drag_and_drop_item_wrapper.dart │ │ │ │ │ ├── drag_and_drop_list.dart │ │ │ │ │ ├── drag_and_drop_list_expansion.dart │ │ │ │ │ ├── drag_and_drop_list_interface.dart │ │ │ │ │ ├── drag_and_drop_list_target.dart │ │ │ │ │ ├── drag_and_drop_list_wrapper.dart │ │ │ │ │ ├── drag_and_drop_lists.dart │ │ │ │ │ ├── drag_handle.dart │ │ │ │ │ ├── measure_size.dart │ │ │ │ │ └── programmatic_expansion_tile.dart │ │ │ │ ├── EasyRefresh │ │ │ │ │ ├── easy_paging.dart │ │ │ │ │ ├── easy_refresh.dart │ │ │ │ │ └── src │ │ │ │ │ │ ├── behavior │ │ │ │ │ │ └── scroll_behavior.dart │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── controller.dart │ │ │ │ │ │ ├── easy_paging.dart │ │ │ │ │ │ ├── easy_refresh.dart │ │ │ │ │ │ ├── indicator │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ ├── footer.dart │ │ │ │ │ │ │ └── footer_locator.dart │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ ├── header.dart │ │ │ │ │ │ │ └── header_locator.dart │ │ │ │ │ │ └── indicator.dart │ │ │ │ │ │ ├── notifier │ │ │ │ │ │ └── indicator_notifier.dart │ │ │ │ │ │ ├── painter │ │ │ │ │ │ └── paths_painter.dart │ │ │ │ │ │ ├── physics │ │ │ │ │ │ └── scroll_physics.dart │ │ │ │ │ │ └── styles │ │ │ │ │ │ ├── bezier │ │ │ │ │ │ ├── bezier_background.dart │ │ │ │ │ │ ├── bezier_circle_indicator.dart │ │ │ │ │ │ ├── bezier_indicator.dart │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ └── bezier_footer.dart │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ ├── bezier_circle_header.dart │ │ │ │ │ │ │ └── bezier_header.dart │ │ │ │ │ │ └── spin │ │ │ │ │ │ │ └── hour_glass.dart │ │ │ │ │ │ ├── classic │ │ │ │ │ │ ├── classic_indicator.dart │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ └── classic_footer.dart │ │ │ │ │ │ └── header │ │ │ │ │ │ │ └── classic_header.dart │ │ │ │ │ │ ├── cupertino │ │ │ │ │ │ ├── cupertino_activity_indicator.dart │ │ │ │ │ │ ├── cupertino_indicator.dart │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ └── cupertino_footer.dart │ │ │ │ │ │ └── header │ │ │ │ │ │ │ └── cupertino_header.dart │ │ │ │ │ │ ├── delivery │ │ │ │ │ │ ├── delivery_indicator.dart │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ └── delivery_footer.dart │ │ │ │ │ │ └── header │ │ │ │ │ │ │ └── delivery_header.dart │ │ │ │ │ │ ├── material │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ └── material_footer.dart │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ └── material_header.dart │ │ │ │ │ │ └── material_indicator.dart │ │ │ │ │ │ ├── phoenix │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ └── phoenix_footer.dart │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ └── phoenix_header.dart │ │ │ │ │ │ └── phoenix_indicator.dart │ │ │ │ │ │ └── taurus │ │ │ │ │ │ ├── footer │ │ │ │ │ │ └── taurus_footer.dart │ │ │ │ │ │ ├── header │ │ │ │ │ │ └── taurus_header.dart │ │ │ │ │ │ └── taurus_indicator.dart │ │ │ │ ├── FlutterContextMenu │ │ │ │ │ ├── components │ │ │ │ │ │ ├── menu_divider.dart │ │ │ │ │ │ ├── menu_header.dart │ │ │ │ │ │ └── menu_item.dart │ │ │ │ │ ├── core │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── context_menu.dart │ │ │ │ │ │ │ ├── context_menu_entry.dart │ │ │ │ │ │ │ └── context_menu_item.dart │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── default_menu_shortcuts.dart │ │ │ │ │ │ │ ├── extensions.dart │ │ │ │ │ │ │ ├── helpers.dart │ │ │ │ │ │ │ └── utils.dart │ │ │ │ │ ├── flutter_context_menu.dart │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── generic_context_menu_overlay.dart │ │ │ │ │ │ └── measured_size_widget.dart │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── context_menu_provider.dart │ │ │ │ │ │ ├── context_menu_region.dart │ │ │ │ │ │ ├── context_menu_state.dart │ │ │ │ │ │ ├── context_menu_widget.dart │ │ │ │ │ │ └── menu_entry_widget.dart │ │ │ │ ├── FlutterResizableContainer │ │ │ │ │ ├── flutter_resizable_container.dart │ │ │ │ │ └── src │ │ │ │ │ │ ├── divider_painter.dart │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── box_constraints_ext.dart │ │ │ │ │ │ ├── iterable_ext.dart │ │ │ │ │ │ └── num_ext.dart │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── resizable_layout.dart │ │ │ │ │ │ └── resizable_layout_direction.dart │ │ │ │ │ │ ├── resizable_child.dart │ │ │ │ │ │ ├── resizable_container.dart │ │ │ │ │ │ ├── resizable_container_divider.dart │ │ │ │ │ │ ├── resizable_controller.dart │ │ │ │ │ │ ├── resizable_divider.dart │ │ │ │ │ │ └── resizable_size.dart │ │ │ │ ├── FlutterSlidable │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── flutter_slidable.dart │ │ │ │ │ └── src │ │ │ │ │ │ ├── action_pane.dart │ │ │ │ │ │ ├── action_pane_configuration.dart │ │ │ │ │ │ ├── action_pane_motions.dart │ │ │ │ │ │ ├── actions.dart │ │ │ │ │ │ ├── auto_close_behavior.dart │ │ │ │ │ │ ├── controller.dart │ │ │ │ │ │ ├── dismissal.dart │ │ │ │ │ │ ├── dismissible_pane.dart │ │ │ │ │ │ ├── dismissible_pane_motions.dart │ │ │ │ │ │ ├── flex_entrance_transition.dart │ │ │ │ │ │ ├── flex_exit_transition.dart │ │ │ │ │ │ ├── gesture_detector.dart │ │ │ │ │ │ ├── notifications.dart │ │ │ │ │ │ ├── scrolling_behavior.dart │ │ │ │ │ │ └── slidable.dart │ │ │ │ ├── GroupButton │ │ │ │ │ ├── group_button.dart │ │ │ │ │ └── src │ │ │ │ │ │ ├── group_button_base.dart │ │ │ │ │ │ ├── group_button_body.dart │ │ │ │ │ │ ├── group_button_item.dart │ │ │ │ │ │ ├── options │ │ │ │ │ │ ├── defaults.dart │ │ │ │ │ │ ├── group_button_options.dart │ │ │ │ │ │ └── options.dart │ │ │ │ │ │ ├── src.dart │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── controller.dart │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── extensions.dart │ │ │ │ │ │ ├── group_to_axis_alignment_extensions.dart │ │ │ │ │ │ └── group_to_wrap_alignment_extensions.dart │ │ │ │ │ │ ├── models │ │ │ │ │ │ ├── alignments.dart │ │ │ │ │ │ ├── grouping_type.dart │ │ │ │ │ │ ├── models.dart │ │ │ │ │ │ └── types.dart │ │ │ │ │ │ └── utils.dart │ │ │ │ ├── Hidable │ │ │ │ │ ├── hidable_controller.dart │ │ │ │ │ ├── hidable_widget.dart │ │ │ │ │ ├── scroll_listener.dart │ │ │ │ │ └── scroll_to_hide.dart │ │ │ │ ├── LottieCupertinoRefresh │ │ │ │ │ ├── custom_activity_indicator.dart │ │ │ │ │ ├── custom_footer.dart │ │ │ │ │ ├── custom_header.dart │ │ │ │ │ ├── custom_indicator.dart │ │ │ │ │ └── lottie_cupertino_refresh.dart │ │ │ │ ├── PhotoView │ │ │ │ │ ├── photo_view.dart │ │ │ │ │ ├── photo_view_gallery.dart │ │ │ │ │ └── src │ │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── photo_view_controller.dart │ │ │ │ │ │ ├── photo_view_controller_delegate.dart │ │ │ │ │ │ └── photo_view_scalestate_controller.dart │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── photo_view_core.dart │ │ │ │ │ │ ├── photo_view_gesture_detector.dart │ │ │ │ │ │ └── photo_view_hit_corners.dart │ │ │ │ │ │ ├── photo_view_computed_scale.dart │ │ │ │ │ │ ├── photo_view_default_widgets.dart │ │ │ │ │ │ ├── photo_view_scale_state.dart │ │ │ │ │ │ ├── photo_view_wrappers.dart │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── ignorable_change_notifier.dart │ │ │ │ │ │ ├── photo_view_hero_attributes.dart │ │ │ │ │ │ └── photo_view_utils.dart │ │ │ │ ├── Shake │ │ │ │ │ ├── index.dart │ │ │ │ │ ├── shake_animation_builder.dart │ │ │ │ │ ├── shake_animation_controller.dart │ │ │ │ │ ├── shake_animation_text.dart │ │ │ │ │ ├── shake_animation_type.dart │ │ │ │ │ └── shake_animation_widget.dart │ │ │ │ ├── TextDrawable │ │ │ │ │ ├── color_generator.dart │ │ │ │ │ ├── contrast_helper.dart │ │ │ │ │ ├── index.dart │ │ │ │ │ └── text_drawable_widget.dart │ │ │ │ ├── Unlock │ │ │ │ │ ├── gesture_notifier.dart │ │ │ │ │ ├── gesture_unlock_indicator.dart │ │ │ │ │ ├── gesture_unlock_view.dart │ │ │ │ │ ├── index.dart │ │ │ │ │ ├── unlock_line_painter.dart │ │ │ │ │ ├── unlock_point.dart │ │ │ │ │ └── unlock_point_painter.dart │ │ │ │ ├── WaterfallFlow │ │ │ │ │ ├── extended_list_library.dart │ │ │ │ │ ├── index.dart │ │ │ │ │ ├── reorderable_grid.dart │ │ │ │ │ ├── reorderable_grid_view.dart │ │ │ │ │ ├── scroll_view.dart │ │ │ │ │ ├── sliver.dart │ │ │ │ │ ├── sliver_waterfall_flow.dart │ │ │ │ │ ├── typedef.dart │ │ │ │ │ └── waterfall_flow.dart │ │ │ │ └── index.dart │ │ │ ├── Notification │ │ │ │ ├── floating_notification.dart │ │ │ │ ├── index.dart │ │ │ │ ├── notification_manager.dart │ │ │ │ └── notification_overlay_widget.dart │ │ │ ├── Scaffold │ │ │ │ ├── custom_cupertino_route.dart │ │ │ │ ├── index.dart │ │ │ │ ├── my_appbar.dart │ │ │ │ ├── my_bottom_navigation_bar.dart │ │ │ │ ├── my_drawer.dart │ │ │ │ ├── my_floating_action_button.dart │ │ │ │ ├── my_ink_well.dart │ │ │ │ ├── my_popupmenu.dart │ │ │ │ ├── my_scaffold.dart │ │ │ │ ├── my_tooltip.dart │ │ │ │ ├── salomon_bottom_bar.dart │ │ │ │ ├── sliver_appbar_delegate.dart │ │ │ │ ├── tab_indicator.dart │ │ │ │ └── titled_navigation_bar.dart │ │ │ ├── States │ │ │ │ ├── base_dynamic_state.dart │ │ │ │ ├── base_window_state.dart │ │ │ │ └── index.dart │ │ │ ├── Tile │ │ │ │ ├── checkbox_item.dart │ │ │ │ ├── container_item.dart │ │ │ │ ├── entry_item.dart │ │ │ │ ├── expandable_item.dart │ │ │ │ ├── font_item.dart │ │ │ │ ├── highlight_text.dart │ │ │ │ ├── index.dart │ │ │ │ ├── inline_input_item.dart │ │ │ │ ├── inline_number_input_item.dart │ │ │ │ ├── inline_selection_item.dart │ │ │ │ ├── input_item.dart │ │ │ │ ├── radio_item.dart │ │ │ │ ├── searchable_stateful_widget.dart │ │ │ │ ├── selection_item.dart │ │ │ │ ├── theme_item.dart │ │ │ │ └── tip_banner.dart │ │ │ ├── Window │ │ │ │ ├── index.dart │ │ │ │ ├── window_caption.dart │ │ │ │ └── window_title.dart │ │ │ └── index.dart │ │ │ └── l10n │ │ │ ├── intl_en.arb │ │ │ ├── intl_ja.arb │ │ │ ├── intl_zh.arb │ │ │ ├── intl_zh_CN.arb │ │ │ ├── intl_zh_TW.arb │ │ │ └── l10n.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── desktop_multi_window │ ├── .gitignore │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── desktop_multi_window.dart │ │ └── src │ │ │ ├── channels.dart │ │ │ ├── widgets │ │ │ └── sub_drag_to_resize_area.dart │ │ │ ├── window_channel.dart │ │ │ ├── window_controller.dart │ │ │ ├── window_controller_impl.dart │ │ │ └── window_listener.dart │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── base_flutter_window.cc │ │ ├── base_flutter_window.h │ │ ├── desktop_multi_window_plugin.cc │ │ ├── desktop_multi_window_plugin_internal.h │ │ ├── flutter_window.cc │ │ ├── flutter_window.h │ │ ├── include │ │ │ └── desktop_multi_window │ │ │ │ └── desktop_multi_window_plugin.h │ │ ├── multi_window_manager.cc │ │ ├── multi_window_manager.h │ │ ├── window_channel.cc │ │ └── window_channel.h │ ├── macos │ │ ├── Classes │ │ │ ├── FlutterMultiWindowPlugin.swift │ │ │ ├── FlutterWindow.swift │ │ │ ├── MultiWindowManager.swift │ │ │ └── WindowChannel.swift │ │ └── desktop_multi_window.podspec │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── test │ │ └── desktop_multi_window_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── base_flutter_window.cc │ │ ├── base_flutter_window.h │ │ ├── desktop_multi_window_plugin.cpp │ │ ├── flutter_window.cc │ │ ├── flutter_window.h │ │ ├── icon.rc │ │ ├── include │ │ └── desktop_multi_window │ │ │ └── desktop_multi_window_plugin.h │ │ ├── multi_window_manager.cc │ │ ├── multi_window_manager.h │ │ ├── multi_window_plugin_internal.h │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── window_channel.cc │ │ └── window_channel.h ├── tool │ ├── biometric_storage │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── proguard.pro │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── kotlin │ │ │ │ └── design │ │ │ │ └── codeux │ │ │ │ └── biometric_storage │ │ │ │ ├── BiometricStorageFile.kt │ │ │ │ ├── BiometricStoragePlugin.kt │ │ │ │ └── CryptographyManager.kt │ │ ├── doc │ │ │ └── screenshot_ios.png │ │ ├── ios │ │ │ ├── Classes │ │ │ │ ├── BiometricStorageImpl.swift │ │ │ │ ├── BiometricStoragePlugin.h │ │ │ │ ├── BiometricStoragePlugin.m │ │ │ │ └── SwiftBiometricStoragePlugin.swift │ │ │ └── biometric_storage.podspec │ │ ├── lib │ │ │ ├── biometric_storage.dart │ │ │ └── src │ │ │ │ ├── biometric_storage.dart │ │ │ │ ├── biometric_storage_web.dart │ │ │ │ ├── biometric_storage_win32.dart │ │ │ │ └── biometric_storage_win32_fake.dart │ │ ├── linux │ │ │ ├── CMakeLists.txt │ │ │ ├── biometric_storage_plugin.cc │ │ │ └── include │ │ │ │ └── biometric_storage │ │ │ │ └── biometric_storage_plugin.h │ │ ├── macos │ │ │ ├── Classes │ │ │ │ ├── BiometricStorageImpl.swift │ │ │ │ ├── BiometricStorageMacOSPlugin.swift │ │ │ │ └── BiometricStoragePlugin.swift │ │ │ └── biometric_storage.podspec │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── biometric_storage_test.dart │ ├── flutter_windowmanager │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── android │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── local.properties │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── adaptant │ │ │ │ └── labs │ │ │ │ └── flutter_windowmanager │ │ │ │ └── FlutterWindowManagerPlugin.java │ │ ├── ios │ │ │ ├── Classes │ │ │ │ ├── FlutterWindowmanagerPlugin.h │ │ │ │ ├── FlutterWindowmanagerPlugin.m │ │ │ │ └── SwiftFlutterWindowmanagerPlugin.swift │ │ │ └── flutter_windowmanager.podspec │ │ ├── lib │ │ │ └── flutter_windowmanager.dart │ │ └── pubspec.yaml │ └── image_gallery_saver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── android │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── example │ │ │ └── imagegallerysaver │ │ │ └── ImageGallerySaverPlugin.kt │ │ ├── ios │ │ ├── Classes │ │ │ ├── ImageGallerySaverPlugin.h │ │ │ ├── ImageGallerySaverPlugin.m │ │ │ └── SwiftImageGallerySaverPlugin.swift │ │ └── image_gallery_saver.podspec │ │ ├── lib │ │ └── image_gallery_saver.dart │ │ └── pubspec.yaml └── widget │ ├── lucide_icons │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_option.yaml │ ├── assets │ │ ├── lucide-preview.html │ │ └── lucide.ttf │ ├── lib │ │ ├── lucide_icons.dart │ │ └── src │ │ │ └── icon_data.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── tool │ │ └── generate_fonts.dart │ └── unicode.html │ └── markdown_widget │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── README_ZH.md │ ├── analysis_options.yaml │ ├── lib │ ├── config │ │ ├── all.dart │ │ ├── configs.dart │ │ ├── markdown_generator.dart │ │ └── toc.dart │ ├── markdown_widget.dart │ └── widget │ │ ├── all.dart │ │ ├── blocks │ │ ├── all.dart │ │ ├── container │ │ │ ├── blockquote.dart │ │ │ ├── list.dart │ │ │ └── table.dart │ │ └── leaf │ │ │ ├── code_block.dart │ │ │ ├── heading.dart │ │ │ ├── horizontal_rules.dart │ │ │ ├── link.dart │ │ │ └── paragraph.dart │ │ ├── inlines │ │ ├── all.dart │ │ ├── code.dart │ │ ├── img.dart │ │ └── input.dart │ │ ├── markdown.dart │ │ ├── markdown_block.dart │ │ ├── proxy_rich_text.dart │ │ ├── span_node.dart │ │ └── widget_visitor.dart │ ├── linux │ └── flutter │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── macos │ └── Flutter │ │ ├── GeneratedPluginRegistrant.swift │ │ └── ephemeral │ │ ├── Flutter-Generated.xcconfig │ │ └── flutter_export_environment.sh │ ├── pubspec.yaml │ └── windows │ └── flutter │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── tools ├── command.txt ├── generate.py ├── windows_dll │ ├── msvcp140.dll │ ├── vcruntime140.dll │ └── vcruntime140_1.dll └── windows_tools │ ├── ChineseSimplified.isl │ └── Loftify.iss ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html ├── manifest.json └── splash │ └── img │ ├── dark-1x.png │ ├── dark-2x.png │ ├── dark-3x.png │ ├── dark-4x.png │ ├── light-1x.png │ ├── light-2x.png │ ├── light-3x.png │ └── light-4x.png └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── 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 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/README_CN.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/cloudchewie/loftify/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/java/com/cloudchewie/loftify/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-night/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/Lofter-asset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/Lofter-asset.zip -------------------------------------------------------------------------------- /assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/avatar.png -------------------------------------------------------------------------------- /assets/icon/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/code.txt -------------------------------------------------------------------------------- /assets/icon/collection_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/collection_dark.png -------------------------------------------------------------------------------- /assets/icon/collection_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/collection_light.png -------------------------------------------------------------------------------- /assets/icon/collection_primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/collection_primary.png -------------------------------------------------------------------------------- /assets/icon/collection_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/collection_white.png -------------------------------------------------------------------------------- /assets/icon/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/confirm.png -------------------------------------------------------------------------------- /assets/icon/download_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/download_white.png -------------------------------------------------------------------------------- /assets/icon/dress_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/dress_dark.png -------------------------------------------------------------------------------- /assets/icon/dress_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/dress_light.png -------------------------------------------------------------------------------- /assets/icon/dynamic_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/dynamic_dark.png -------------------------------------------------------------------------------- /assets/icon/dynamic_dark_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/dynamic_dark_selected.png -------------------------------------------------------------------------------- /assets/icon/dynamic_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/dynamic_light.png -------------------------------------------------------------------------------- /assets/icon/dynamic_light_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/dynamic_light_selected.png -------------------------------------------------------------------------------- /assets/icon/favorite_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/favorite_dark.png -------------------------------------------------------------------------------- /assets/icon/favorite_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/favorite_light.png -------------------------------------------------------------------------------- /assets/icon/grain_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/grain_white.png -------------------------------------------------------------------------------- /assets/icon/home_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/home_dark.png -------------------------------------------------------------------------------- /assets/icon/home_dark_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/home_dark_selected.png -------------------------------------------------------------------------------- /assets/icon/home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/home_light.png -------------------------------------------------------------------------------- /assets/icon/home_light_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/home_light_selected.png -------------------------------------------------------------------------------- /assets/icon/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/hot.png -------------------------------------------------------------------------------- /assets/icon/hot_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/hot_white.png -------------------------------------------------------------------------------- /assets/icon/hotless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/hotless.png -------------------------------------------------------------------------------- /assets/icon/hottest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/hottest.png -------------------------------------------------------------------------------- /assets/icon/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/info.png -------------------------------------------------------------------------------- /assets/icon/like_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/like_dark.png -------------------------------------------------------------------------------- /assets/icon/like_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/like_filled.png -------------------------------------------------------------------------------- /assets/icon/like_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/like_light.png -------------------------------------------------------------------------------- /assets/icon/link_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/link_dark.png -------------------------------------------------------------------------------- /assets/icon/link_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/link_grey.png -------------------------------------------------------------------------------- /assets/icon/link_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/link_light.png -------------------------------------------------------------------------------- /assets/icon/link_primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/link_primary.png -------------------------------------------------------------------------------- /assets/icon/link_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/link_white.png -------------------------------------------------------------------------------- /assets/icon/mine_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/mine_dark.png -------------------------------------------------------------------------------- /assets/icon/mine_dark_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/mine_dark_selected.png -------------------------------------------------------------------------------- /assets/icon/mine_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/mine_light.png -------------------------------------------------------------------------------- /assets/icon/mine_light_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/mine_light_selected.png -------------------------------------------------------------------------------- /assets/icon/order_down_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/order_down_dark.png -------------------------------------------------------------------------------- /assets/icon/order_down_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/order_down_light.png -------------------------------------------------------------------------------- /assets/icon/order_up_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/order_up_dark.png -------------------------------------------------------------------------------- /assets/icon/order_up_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/order_up_light.png -------------------------------------------------------------------------------- /assets/icon/pin_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/pin_dark.png -------------------------------------------------------------------------------- /assets/icon/pin_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/pin_light.png -------------------------------------------------------------------------------- /assets/icon/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/run.py -------------------------------------------------------------------------------- /assets/icon/search_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/search_dark.png -------------------------------------------------------------------------------- /assets/icon/search_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/search_grey.png -------------------------------------------------------------------------------- /assets/icon/search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/search_light.png -------------------------------------------------------------------------------- /assets/icon/setting_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/setting_dark.png -------------------------------------------------------------------------------- /assets/icon/setting_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/setting_light.png -------------------------------------------------------------------------------- /assets/icon/tag_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/tag_dark.png -------------------------------------------------------------------------------- /assets/icon/tag_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/tag_grey.png -------------------------------------------------------------------------------- /assets/icon/tag_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/tag_light.png -------------------------------------------------------------------------------- /assets/icon/tag_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/icon/tag_white.png -------------------------------------------------------------------------------- /assets/illust/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/code.txt -------------------------------------------------------------------------------- /assets/illust/collection_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/collection_dark.webp -------------------------------------------------------------------------------- /assets/illust/collection_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/collection_light.webp -------------------------------------------------------------------------------- /assets/illust/dress_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/dress_dark.webp -------------------------------------------------------------------------------- /assets/illust/dress_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/dress_light.webp -------------------------------------------------------------------------------- /assets/illust/favorite_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/favorite_dark.png -------------------------------------------------------------------------------- /assets/illust/favorite_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/favorite_light.png -------------------------------------------------------------------------------- /assets/illust/flag_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/flag_dark.webp -------------------------------------------------------------------------------- /assets/illust/flag_dark_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/flag_dark_2.webp -------------------------------------------------------------------------------- /assets/illust/flag_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/flag_light.webp -------------------------------------------------------------------------------- /assets/illust/flag_light_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/flag_light_2.webp -------------------------------------------------------------------------------- /assets/illust/hot_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/hot_dark.webp -------------------------------------------------------------------------------- /assets/illust/hot_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/hot_light.webp -------------------------------------------------------------------------------- /assets/illust/like_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/like_dark.png -------------------------------------------------------------------------------- /assets/illust/like_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/like_light.png -------------------------------------------------------------------------------- /assets/illust/lofter_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/lofter_dark.png -------------------------------------------------------------------------------- /assets/illust/lofter_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/lofter_light.png -------------------------------------------------------------------------------- /assets/illust/pigeon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/pigeon_dark.png -------------------------------------------------------------------------------- /assets/illust/pigeon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/pigeon_light.png -------------------------------------------------------------------------------- /assets/illust/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/run.py -------------------------------------------------------------------------------- /assets/illust/star_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/star_dark.png -------------------------------------------------------------------------------- /assets/illust/star_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/star_light.png -------------------------------------------------------------------------------- /assets/illust/tag_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/tag_dark.webp -------------------------------------------------------------------------------- /assets/illust/tag_light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/tag_light.webp -------------------------------------------------------------------------------- /assets/illust/thumb_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/thumb_dark.png -------------------------------------------------------------------------------- /assets/illust/thumb_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/illust/thumb_light.png -------------------------------------------------------------------------------- /assets/logo-transparent-big.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/logo-transparent-big.ico -------------------------------------------------------------------------------- /assets/logo-transparent-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/logo-transparent-big.png -------------------------------------------------------------------------------- /assets/logo-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/logo-transparent.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/lottie/brightness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/brightness.json -------------------------------------------------------------------------------- /assets/lottie/celebrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/celebrate.json -------------------------------------------------------------------------------- /assets/lottie/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/code.txt -------------------------------------------------------------------------------- /assets/lottie/collection_big_normal_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/collection_big_normal_dark.json -------------------------------------------------------------------------------- /assets/lottie/collection_big_normal_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/collection_big_normal_light.json -------------------------------------------------------------------------------- /assets/lottie/collection_medium_normal_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/collection_medium_normal_dark.json -------------------------------------------------------------------------------- /assets/lottie/collection_medium_normal_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/collection_medium_normal_light.json -------------------------------------------------------------------------------- /assets/lottie/follow_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/follow_dark.json -------------------------------------------------------------------------------- /assets/lottie/follow_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/follow_light.json -------------------------------------------------------------------------------- /assets/lottie/follow_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/follow_video.json -------------------------------------------------------------------------------- /assets/lottie/gift_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/gift_dark.json -------------------------------------------------------------------------------- /assets/lottie/letter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/letter.json -------------------------------------------------------------------------------- /assets/lottie/like_big_normal_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_big_normal_dark.json -------------------------------------------------------------------------------- /assets/lottie/like_big_normal_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_big_normal_light.json -------------------------------------------------------------------------------- /assets/lottie/like_double_click_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_double_click_dark.json -------------------------------------------------------------------------------- /assets/lottie/like_double_click_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_double_click_light.json -------------------------------------------------------------------------------- /assets/lottie/like_double_tap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_double_tap.json -------------------------------------------------------------------------------- /assets/lottie/like_medium_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_medium_dark.json -------------------------------------------------------------------------------- /assets/lottie/like_medium_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_medium_light.json -------------------------------------------------------------------------------- /assets/lottie/like_vibrate_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_vibrate_light.json -------------------------------------------------------------------------------- /assets/lottie/like_video_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_video_normal.json -------------------------------------------------------------------------------- /assets/lottie/like_video_vibrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/like_video_vibrate.json -------------------------------------------------------------------------------- /assets/lottie/loading_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/loading_01.json -------------------------------------------------------------------------------- /assets/lottie/loading_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/loading_02.json -------------------------------------------------------------------------------- /assets/lottie/loading_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/loading_dark.json -------------------------------------------------------------------------------- /assets/lottie/loading_dark_transparent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/loading_dark_transparent.json -------------------------------------------------------------------------------- /assets/lottie/loading_gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/loading_gradient.json -------------------------------------------------------------------------------- /assets/lottie/loading_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/loading_light.json -------------------------------------------------------------------------------- /assets/lottie/moon_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/moon_light.json -------------------------------------------------------------------------------- /assets/lottie/recommend_big_normal_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/recommend_big_normal_dark.json -------------------------------------------------------------------------------- /assets/lottie/recommend_big_normal_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/recommend_big_normal_light.json -------------------------------------------------------------------------------- /assets/lottie/recommend_big_vibrate_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/recommend_big_vibrate_dark.json -------------------------------------------------------------------------------- /assets/lottie/recommend_big_vibrate_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/recommend_big_vibrate_light.json -------------------------------------------------------------------------------- /assets/lottie/recommend_medium_focus_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/recommend_medium_focus_dark.json -------------------------------------------------------------------------------- /assets/lottie/recommend_medium_focus_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/recommend_medium_focus_light.json -------------------------------------------------------------------------------- /assets/lottie/recommend_video_normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/recommend_video_normal.json -------------------------------------------------------------------------------- /assets/lottie/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/run.py -------------------------------------------------------------------------------- /assets/lottie/share_video_vibrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/share_video_vibrate.json -------------------------------------------------------------------------------- /assets/lottie/shine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/shine.json -------------------------------------------------------------------------------- /assets/lottie/sun_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/sun_light.json -------------------------------------------------------------------------------- /assets/lottie/video_playing_dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/video_playing_dark.json -------------------------------------------------------------------------------- /assets/lottie/video_playing_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/lottie/video_playing_light.json -------------------------------------------------------------------------------- /assets/mess/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/mess/code.txt -------------------------------------------------------------------------------- /assets/mess/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/mess/empty.png -------------------------------------------------------------------------------- /assets/mess/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/mess/run.py -------------------------------------------------------------------------------- /assets/mess/tag_icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/mess/tag_icon_bg.png -------------------------------------------------------------------------------- /assets/mess/tag_row_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/mess/tag_row_bg.png -------------------------------------------------------------------------------- /assets/mess/tag_row_bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/assets/mess/tag_row_bg_dark.png -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /dll/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/dll/msvcp140.dll -------------------------------------------------------------------------------- /dll/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/dll/sqlite3.dll -------------------------------------------------------------------------------- /dll/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/dll/vcruntime140.dll -------------------------------------------------------------------------------- /dll/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/dll/vcruntime140_1.dll -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/darkbackground.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/Api/collection_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/collection_api.dart -------------------------------------------------------------------------------- /lib/Api/dress_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/dress_api.dart -------------------------------------------------------------------------------- /lib/Api/gift_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/gift_api.dart -------------------------------------------------------------------------------- /lib/Api/grain_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/grain_api.dart -------------------------------------------------------------------------------- /lib/Api/image_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/image_api.dart -------------------------------------------------------------------------------- /lib/Api/login_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/login_api.dart -------------------------------------------------------------------------------- /lib/Api/message_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/message_api.dart -------------------------------------------------------------------------------- /lib/Api/post_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/post_api.dart -------------------------------------------------------------------------------- /lib/Api/recommend_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/recommend_api.dart -------------------------------------------------------------------------------- /lib/Api/search_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/search_api.dart -------------------------------------------------------------------------------- /lib/Api/server_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/server_api.dart -------------------------------------------------------------------------------- /lib/Api/setting_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/setting_api.dart -------------------------------------------------------------------------------- /lib/Api/tag_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/tag_api.dart -------------------------------------------------------------------------------- /lib/Api/user_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Api/user_api.dart -------------------------------------------------------------------------------- /lib/Database/create_table_sql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Database/create_table_sql.dart -------------------------------------------------------------------------------- /lib/Database/database_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Database/database_manager.dart -------------------------------------------------------------------------------- /lib/Models/account_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/account_response.dart -------------------------------------------------------------------------------- /lib/Models/cloud_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/cloud_control.dart -------------------------------------------------------------------------------- /lib/Models/collection_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/collection_response.dart -------------------------------------------------------------------------------- /lib/Models/dress_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/dress_response.dart -------------------------------------------------------------------------------- /lib/Models/dynamic_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/dynamic_response.dart -------------------------------------------------------------------------------- /lib/Models/favorites_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/favorites_response.dart -------------------------------------------------------------------------------- /lib/Models/gift_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/gift_response.dart -------------------------------------------------------------------------------- /lib/Models/grain_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/grain_response.dart -------------------------------------------------------------------------------- /lib/Models/history_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/history_response.dart -------------------------------------------------------------------------------- /lib/Models/illust.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/illust.dart -------------------------------------------------------------------------------- /lib/Models/login_lofterid_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/login_lofterid_response.dart -------------------------------------------------------------------------------- /lib/Models/login_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/login_response.dart -------------------------------------------------------------------------------- /lib/Models/message_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/message_response.dart -------------------------------------------------------------------------------- /lib/Models/post_detail_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/post_detail_response.dart -------------------------------------------------------------------------------- /lib/Models/recommend_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/recommend_response.dart -------------------------------------------------------------------------------- /lib/Models/return_gift_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/return_gift_response.dart -------------------------------------------------------------------------------- /lib/Models/search_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/search_response.dart -------------------------------------------------------------------------------- /lib/Models/show_case_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/show_case_response.dart -------------------------------------------------------------------------------- /lib/Models/simple_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/simple_response.dart -------------------------------------------------------------------------------- /lib/Models/suit_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/suit_response.dart -------------------------------------------------------------------------------- /lib/Models/tag_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/tag_response.dart -------------------------------------------------------------------------------- /lib/Models/user_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Models/user_response.dart -------------------------------------------------------------------------------- /lib/Screens/Info/collection_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/collection_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/favorite_folder_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/favorite_folder_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/favorite_folder_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/favorite_folder_list_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/following_follower_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/following_follower_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/grain_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/grain_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/history_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/history_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/like_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/like_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/nested_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/nested_mixin.dart -------------------------------------------------------------------------------- /lib/Screens/Info/post_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/post_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/share_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/share_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/supporter_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/supporter_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/system_notice_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/system_notice_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Info/user_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Info/user_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Lock/pin_change_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Lock/pin_change_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Lock/pin_verify_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Lock/pin_verify_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Login/login_by_captcha_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Login/login_by_captcha_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Login/login_by_lofterid_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Login/login_by_lofterid_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Login/login_by_mail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Login/login_by_mail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Login/login_by_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Login/login_by_password_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Navigation/dynamic_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Navigation/dynamic_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Navigation/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Navigation/home_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Navigation/mine_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Navigation/mine_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Navigation/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Navigation/search_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/collection_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/collection_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/grain_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/grain_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/post_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/post_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/search_result_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/search_result_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/tag_collection_grain_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/tag_collection_grain_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/tag_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/tag_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/tag_insearch_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/tag_insearch_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/tag_related_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/tag_related_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/video_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/video_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Post/video_list_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Post/video_list_controller.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/about_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/about_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/apperance_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/apperance_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/base_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/base_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/blacklist_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/blacklist_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/egg_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/egg_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/experiment_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/experiment_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/filename_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/filename_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/general_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/general_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/image_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/image_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/lofter_basic_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/lofter_basic_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/mobile_setting_navigation_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/mobile_setting_navigation_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/select_font_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/select_font_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/select_theme_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/select_theme_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/setting_navigation_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/setting_navigation_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/tagshield_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/tagshield_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Setting/userdynamicshield_setting_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Setting/userdynamicshield_setting_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/custom_bg_avatar_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/custom_bg_avatar_list_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/custom_dress_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/custom_dress_list_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/dress_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/dress_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/dress_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/dress_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/dress_suit_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/dress_suit_list_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/emote_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/emote_detail_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/suit_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/suit_screen.dart -------------------------------------------------------------------------------- /lib/Screens/Suit/user_market_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/Suit/user_market_screen.dart -------------------------------------------------------------------------------- /lib/Screens/main_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/main_screen.dart -------------------------------------------------------------------------------- /lib/Screens/panel_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Screens/panel_screen.dart -------------------------------------------------------------------------------- /lib/Utils/app_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/app_provider.dart -------------------------------------------------------------------------------- /lib/Utils/asset_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/asset_util.dart -------------------------------------------------------------------------------- /lib/Utils/cloud_control_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/cloud_control_provider.dart -------------------------------------------------------------------------------- /lib/Utils/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/constant.dart -------------------------------------------------------------------------------- /lib/Utils/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/enums.dart -------------------------------------------------------------------------------- /lib/Utils/hive_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/hive_util.dart -------------------------------------------------------------------------------- /lib/Utils/lottie_files.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/lottie_files.dart -------------------------------------------------------------------------------- /lib/Utils/request_header_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/request_header_util.dart -------------------------------------------------------------------------------- /lib/Utils/request_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/request_util.dart -------------------------------------------------------------------------------- /lib/Utils/shortcuts_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/shortcuts_util.dart -------------------------------------------------------------------------------- /lib/Utils/uri_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/uri_util.dart -------------------------------------------------------------------------------- /lib/Utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Utils/utils.dart -------------------------------------------------------------------------------- /lib/Widgets/BottomSheet/collection_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/BottomSheet/collection_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/Widgets/BottomSheet/comment_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/BottomSheet/comment_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/Widgets/BottomSheet/custom_bg_avatar_detail_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/BottomSheet/custom_bg_avatar_detail_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/Widgets/BottomSheet/newest_filter_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/BottomSheet/newest_filter_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/Widgets/BottomSheet/shield_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/BottomSheet/shield_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/Widgets/BottomSheet/slide_captcha_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/BottomSheet/slide_captcha_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/Widgets/BottomSheet/subscribe_post_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/BottomSheet/subscribe_post_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/Widgets/Item/item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/Item/item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/Item/loftify_item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/Item/loftify_item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/PostItem/common_info_post_item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/PostItem/common_info_post_item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/PostItem/favorite_folder_post_item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/PostItem/favorite_folder_post_item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/PostItem/general_post_item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/PostItem/general_post_item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/PostItem/grain_post_item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/PostItem/grain_post_item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/PostItem/image_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/PostItem/image_grid.dart -------------------------------------------------------------------------------- /lib/Widgets/PostItem/recommend_flow_item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/PostItem/recommend_flow_item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/PostItem/search_post_flow_item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/PostItem/search_post_flow_item_builder.dart -------------------------------------------------------------------------------- /lib/Widgets/Shortcuts/app_shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/Shortcuts/app_shortcuts.dart -------------------------------------------------------------------------------- /lib/Widgets/Shortcuts/keyboard_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/Widgets/Shortcuts/keyboard_widget.dart -------------------------------------------------------------------------------- /lib/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/l10n/intl_en.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/l10n/intl_zh.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh_CN.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/l10n/intl_zh_CN.arb -------------------------------------------------------------------------------- /lib/l10n/intl_zh_TW.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/l10n/intl_zh_TW.arb -------------------------------------------------------------------------------- /lib/l10n/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/l10n/l10n.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/lib/main.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /third-party/chewie/build/.last_build_id: -------------------------------------------------------------------------------- 1 | ae30582a806dc4248fd237072391b5a0 -------------------------------------------------------------------------------- /third-party/chewie/build/ae30582a806dc4248fd237072391b5a0/.filecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/build/ae30582a806dc4248fd237072391b5a0/.filecache -------------------------------------------------------------------------------- /third-party/chewie/build/ae30582a806dc4248fd237072391b5a0/outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/build/ae30582a806dc4248fd237072391b5a0/outputs.json -------------------------------------------------------------------------------- /third-party/chewie/l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/l10n.yaml -------------------------------------------------------------------------------- /third-party/chewie/lib/awesome_chewie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/awesome_chewie.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/gen-export.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/gen-export.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/gen_export.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/gen_export.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Api/github_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Api/github_api.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Models/github_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Models/github_response.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Models/refresh_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Models/refresh_interface.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Models/response_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Models/response_result.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Models/selection_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Models/selection_item_model.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Models/sortable_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Models/sortable_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Models/tab_item_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Models/tab_item_data.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Providers/chewie_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Providers/chewie_provider.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Resources/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Resources/colors.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Resources/dimens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Resources/dimens.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Resources/fonts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Resources/fonts.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Resources/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Resources/styles.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Resources/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Resources/theme.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Resources/theme_color_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Resources/theme_color_data.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Screens/update_log_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Screens/update_log_screen.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Screens/update_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Screens/update_screen.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Screens/webview_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Screens/webview_screen.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/color_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/color_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/crypt_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/crypt_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/html_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/html_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/jwt_decoder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/jwt_decoder.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/mock_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/mock_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/number_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/number_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/responsive_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/responsive_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/string_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/string_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/time_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/time_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/General/web_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/General/web_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/asset_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/asset_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/cache_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/cache_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/export_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/export_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/file_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/file_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/font_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/font_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/hive_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/hive_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/import_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/import_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/locale_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/locale_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/lottie_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/lottie_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/route_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/route_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/System/uri_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/System/uri_util.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/constant.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/enums.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/ilogger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/ilogger.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/iprint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/iprint.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/itoast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/itoast.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Utils/utils.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/animated_fade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/animated_fade.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/animated_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/animated_overlay.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/animated_slide.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/animated_slide.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/dialog_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/dialog_animation.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/hero_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/hero_text.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/ink_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/ink_animation.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Animation/pressable_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Animation/pressable_animation.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/custom_mouse_region.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/custom_mouse_region.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/hero_photo_view_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/hero_photo_view_screen.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/indexed_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/indexed_list_view.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/item_builder.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/load_more_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/load_more_notification.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/marquee_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/marquee_widget.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/mouse_state_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/mouse_state_builder.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/multi_tappable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/multi_tappable.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/no_shadow_scroll_behavior.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/no_shadow_scroll_behavior.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Basic/underlined_tab_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Basic/underlined_tab_indicator.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/BottomSheet/bottom_sheet_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/BottomSheet/bottom_sheet_builder.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/BottomSheet/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/BottomSheet/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/BottomSheet/input_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/BottomSheet/input_bottom_sheet.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/BottomSheet/star_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/BottomSheet/star_bottom_sheet.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/circle_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/circle_icon_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/hover_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/hover_icon_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/outlined_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/outlined_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/round_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/round_icon_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/round_icon_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/round_icon_text_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/shadow_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/shadow_icon_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/toggle_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/toggle_icon_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Button/window_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Button/window_button.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/anchor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/anchor.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/auto_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/auto_image.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/custom_html_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/custom_html_widget.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/custom_markdown_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/custom_markdown_widget.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/fade_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/fade_shimmer.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/github_calendar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/github_calendar.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/loading_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/loading_icon.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/my_cached_network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/my_cached_network_image.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/progress_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/progress_bar.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/search_bar.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/star_rating.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/star_rating.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Component/translucent_tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Component/translucent_tag.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Dialog/components/animations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Dialog/components/animations.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Dialog/components/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Dialog/components/colors.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Dialog/custom_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Dialog/custom_dialog.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Dialog/dialog_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Dialog/dialog_builder.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Dialog/dialog_navigator_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Dialog/dialog_navigator_helper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Dialog/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Dialog/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/animated_sidebar_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/animated_sidebar_container.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/appbar_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/appbar_wrapper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/clickable_gesture_detector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/clickable_gesture_detector.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/clickable_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/clickable_wrapper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/dropdown_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/dropdown_wrapper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/empty_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/empty_placeholder.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/error_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/error_widget.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/loading_widget.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/my_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/my_divider.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/number_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/number_field.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/responsive_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/responsive_app_bar.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/selectable_area_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/selectable_area_wrapper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/sliver_appbar_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/sliver_appbar_wrapper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/tab_bar_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/tab_bar_wrapper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/General/tooltip_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/General/tooltip_wrapper.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/AnimatedCustomDropdown/models/selection_item_model.dart: -------------------------------------------------------------------------------- 1 | part of '../custom_dropdown.dart'; 2 | -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/CodeHighlightView/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/CodeHighlightView/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/CodeHighlightView/theme_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/CodeHighlightView/theme_map.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/CodeHighlightView/themes/vs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/CodeHighlightView/themes/vs.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Draggable/drag_and_drop_interface.dart: -------------------------------------------------------------------------------- 1 | abstract class DragAndDropInterface {} 2 | -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Draggable/drag_handle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Draggable/drag_handle.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Draggable/measure_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Draggable/measure_size.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/EasyRefresh/easy_paging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/EasyRefresh/easy_paging.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/EasyRefresh/easy_refresh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/EasyRefresh/easy_refresh.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/EasyRefresh/src/easy_paging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/EasyRefresh/src/easy_paging.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/FlutterSlidable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/FlutterSlidable/LICENSE -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/FlutterSlidable/src/actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/FlutterSlidable/src/actions.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/GroupButton/group_button.dart: -------------------------------------------------------------------------------- 1 | library group_button; 2 | 3 | export 'src/src.dart'; 4 | -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/GroupButton/src/options/options.dart: -------------------------------------------------------------------------------- 1 | export 'group_button_options.dart'; 2 | -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/GroupButton/src/src.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/GroupButton/src/src.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/GroupButton/src/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/GroupButton/src/utils/utils.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Hidable/hidable_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Hidable/hidable_controller.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Hidable/hidable_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Hidable/hidable_widget.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Hidable/scroll_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Hidable/scroll_listener.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Hidable/scroll_to_hide.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Hidable/scroll_to_hide.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/PhotoView/photo_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/PhotoView/photo_view.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Shake/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Shake/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Shake/shake_animation_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Shake/shake_animation_text.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/TextDrawable/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/TextDrawable/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Unlock/gesture_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Unlock/gesture_notifier.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Unlock/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Unlock/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/Unlock/unlock_point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/Unlock/unlock_point.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/WaterfallFlow/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/WaterfallFlow/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/WaterfallFlow/sliver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/WaterfallFlow/sliver.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/WaterfallFlow/typedef.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/WaterfallFlow/typedef.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Module/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Module/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Notification/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Notification/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/custom_cupertino_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/custom_cupertino_route.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/my_appbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/my_appbar.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/my_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/my_drawer.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/my_ink_well.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/my_ink_well.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/my_popupmenu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/my_popupmenu.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/my_scaffold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/my_scaffold.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/my_tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/my_tooltip.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/salomon_bottom_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/salomon_bottom_bar.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/sliver_appbar_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/sliver_appbar_delegate.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/tab_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/tab_indicator.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Scaffold/titled_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Scaffold/titled_navigation_bar.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/States/base_dynamic_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/States/base_dynamic_state.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/States/base_window_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/States/base_window_state.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/States/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/States/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/checkbox_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/checkbox_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/container_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/container_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/entry_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/entry_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/expandable_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/expandable_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/font_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/font_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/highlight_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/highlight_text.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/inline_input_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/inline_input_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/inline_number_input_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/inline_number_input_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/inline_selection_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/inline_selection_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/input_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/input_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/radio_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/radio_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/searchable_stateful_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/searchable_stateful_widget.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/selection_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/selection_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/theme_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/theme_item.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Tile/tip_banner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Tile/tip_banner.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Window/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Window/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Window/window_caption.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Window/window_caption.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/Window/window_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/Window/window_title.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/Widgets/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/Widgets/index.dart -------------------------------------------------------------------------------- /third-party/chewie/lib/src/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/l10n/intl_en.arb -------------------------------------------------------------------------------- /third-party/chewie/lib/src/l10n/intl_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/l10n/intl_ja.arb -------------------------------------------------------------------------------- /third-party/chewie/lib/src/l10n/intl_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/l10n/intl_zh.arb -------------------------------------------------------------------------------- /third-party/chewie/lib/src/l10n/intl_zh_CN.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/l10n/intl_zh_CN.arb -------------------------------------------------------------------------------- /third-party/chewie/lib/src/l10n/intl_zh_TW.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/l10n/intl_zh_TW.arb -------------------------------------------------------------------------------- /third-party/chewie/lib/src/l10n/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/lib/src/l10n/l10n.dart -------------------------------------------------------------------------------- /third-party/chewie/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/pubspec.lock -------------------------------------------------------------------------------- /third-party/chewie/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/chewie/pubspec.yaml -------------------------------------------------------------------------------- /third-party/desktop_multi_window/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/.gitignore -------------------------------------------------------------------------------- /third-party/desktop_multi_window/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /third-party/desktop_multi_window/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/.vscode/settings.json -------------------------------------------------------------------------------- /third-party/desktop_multi_window/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/CHANGELOG.md -------------------------------------------------------------------------------- /third-party/desktop_multi_window/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/LICENSE -------------------------------------------------------------------------------- /third-party/desktop_multi_window/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/README.md -------------------------------------------------------------------------------- /third-party/desktop_multi_window/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/analysis_options.yaml -------------------------------------------------------------------------------- /third-party/desktop_multi_window/lib/desktop_multi_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/lib/desktop_multi_window.dart -------------------------------------------------------------------------------- /third-party/desktop_multi_window/lib/src/channels.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/lib/src/channels.dart -------------------------------------------------------------------------------- /third-party/desktop_multi_window/lib/src/window_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/lib/src/window_channel.dart -------------------------------------------------------------------------------- /third-party/desktop_multi_window/lib/src/window_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/lib/src/window_controller.dart -------------------------------------------------------------------------------- /third-party/desktop_multi_window/lib/src/window_controller_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/lib/src/window_controller_impl.dart -------------------------------------------------------------------------------- /third-party/desktop_multi_window/lib/src/window_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/lib/src/window_listener.dart -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/base_flutter_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/base_flutter_window.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/base_flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/base_flutter_window.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/desktop_multi_window_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/desktop_multi_window_plugin.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/flutter_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/flutter_window.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/flutter_window.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/multi_window_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/multi_window_manager.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/multi_window_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/multi_window_manager.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/window_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/window_channel.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/linux/window_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/linux/window_channel.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/macos/Classes/FlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/macos/Classes/FlutterWindow.swift -------------------------------------------------------------------------------- /third-party/desktop_multi_window/macos/Classes/MultiWindowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/macos/Classes/MultiWindowManager.swift -------------------------------------------------------------------------------- /third-party/desktop_multi_window/macos/Classes/WindowChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/macos/Classes/WindowChannel.swift -------------------------------------------------------------------------------- /third-party/desktop_multi_window/macos/desktop_multi_window.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/macos/desktop_multi_window.podspec -------------------------------------------------------------------------------- /third-party/desktop_multi_window/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/pubspec.lock -------------------------------------------------------------------------------- /third-party/desktop_multi_window/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/pubspec.yaml -------------------------------------------------------------------------------- /third-party/desktop_multi_window/test/desktop_multi_window_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/.gitignore -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/base_flutter_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/base_flutter_window.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/base_flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/base_flutter_window.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/flutter_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/flutter_window.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/flutter_window.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/icon.rc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/multi_window_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/multi_window_manager.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/multi_window_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/multi_window_manager.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/multi_window_plugin_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/multi_window_plugin_internal.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/resource.h -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/resources/app_icon.ico -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/window_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/window_channel.cc -------------------------------------------------------------------------------- /third-party/desktop_multi_window/windows/window_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/desktop_multi_window/windows/window_channel.h -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/CHANGELOG.md -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/LICENSE -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/README.md -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/analysis_options.yaml -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/android/build.gradle -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/android/proguard.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'biometric_storage' 2 | -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/doc/screenshot_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/doc/screenshot_ios.png -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/ios/Classes/BiometricStoragePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/ios/Classes/BiometricStoragePlugin.h -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/ios/Classes/BiometricStoragePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/ios/Classes/BiometricStoragePlugin.m -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/ios/biometric_storage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/ios/biometric_storage.podspec -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/lib/biometric_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/lib/biometric_storage.dart -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/lib/src/biometric_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/lib/src/biometric_storage.dart -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/lib/src/biometric_storage_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/lib/src/biometric_storage_web.dart -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/lib/src/biometric_storage_win32.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/lib/src/biometric_storage_win32.dart -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/lib/src/biometric_storage_win32_fake.dart: -------------------------------------------------------------------------------- 1 | class Win32BiometricStoragePlugin {} 2 | -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/linux/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/linux/biometric_storage_plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/linux/biometric_storage_plugin.cc -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/macos/biometric_storage.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/macos/biometric_storage.podspec -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/pubspec.yaml -------------------------------------------------------------------------------- /third-party/tool/biometric_storage/test/biometric_storage_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/biometric_storage/test/biometric_storage_test.dart -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/flutter_windowmanager/CHANGELOG.md -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/flutter_windowmanager/LICENSE -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/flutter_windowmanager/README.md -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/flutter_windowmanager/android/build.gradle -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/flutter_windowmanager/android/local.properties -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'flutter_windowmanager' 2 | -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/lib/flutter_windowmanager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/flutter_windowmanager/lib/flutter_windowmanager.dart -------------------------------------------------------------------------------- /third-party/tool/flutter_windowmanager/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/flutter_windowmanager/pubspec.yaml -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/CHANGELOG.md -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/LICENSE -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/README.md -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/android/build.gradle -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/android/gradle.properties -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/android/gradlew -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/android/gradlew.bat -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'image_gallery_saver' 2 | -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/ios/image_gallery_saver.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/ios/image_gallery_saver.podspec -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/lib/image_gallery_saver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/lib/image_gallery_saver.dart -------------------------------------------------------------------------------- /third-party/tool/image_gallery_saver/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/tool/image_gallery_saver/pubspec.yaml -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.15.30 2 | 3 | * Initial release 4 | -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/LICENSE -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/README.md -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/analysis_option.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/analysis_option.yaml -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/assets/lucide-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/assets/lucide-preview.html -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/assets/lucide.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/assets/lucide.ttf -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/lib/lucide_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/lib/lucide_icons.dart -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/lib/src/icon_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/lib/src/icon_data.dart -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/pubspec.lock -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/pubspec.yaml -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/tool/generate_fonts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/tool/generate_fonts.dart -------------------------------------------------------------------------------- /third-party/widget/lucide_icons/unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/lucide_icons/unicode.html -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/CHANGELOG.md -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/CONTRIBUTING.md -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/LICENSE -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/README.md -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/README_ZH.md -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/config/all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/config/all.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/config/configs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/config/configs.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/config/markdown_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/config/markdown_generator.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/config/toc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/config/toc.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/markdown_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/markdown_widget.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/all.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/blocks/all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/blocks/all.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/blocks/leaf/heading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/blocks/leaf/heading.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/blocks/leaf/link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/blocks/leaf/link.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/inlines/all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/inlines/all.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/inlines/code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/inlines/code.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/inlines/img.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/inlines/img.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/inlines/input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/inlines/input.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/markdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/markdown.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/markdown_block.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/markdown_block.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/proxy_rich_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/proxy_rich_text.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/span_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/span_node.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/lib/widget/widget_visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/lib/widget/widget_visitor.dart -------------------------------------------------------------------------------- /third-party/widget/markdown_widget/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/third-party/widget/markdown_widget/pubspec.yaml -------------------------------------------------------------------------------- /tools/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/tools/command.txt -------------------------------------------------------------------------------- /tools/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/tools/generate.py -------------------------------------------------------------------------------- /tools/windows_dll/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/tools/windows_dll/msvcp140.dll -------------------------------------------------------------------------------- /tools/windows_dll/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/tools/windows_dll/vcruntime140.dll -------------------------------------------------------------------------------- /tools/windows_dll/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/tools/windows_dll/vcruntime140_1.dll -------------------------------------------------------------------------------- /tools/windows_tools/ChineseSimplified.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/tools/windows_tools/ChineseSimplified.isl -------------------------------------------------------------------------------- /tools/windows_tools/Loftify.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/tools/windows_tools/Loftify.iss -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/manifest.json -------------------------------------------------------------------------------- /web/splash/img/dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/dark-1x.png -------------------------------------------------------------------------------- /web/splash/img/dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/dark-2x.png -------------------------------------------------------------------------------- /web/splash/img/dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/dark-3x.png -------------------------------------------------------------------------------- /web/splash/img/dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/dark-4x.png -------------------------------------------------------------------------------- /web/splash/img/light-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/light-1x.png -------------------------------------------------------------------------------- /web/splash/img/light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/light-2x.png -------------------------------------------------------------------------------- /web/splash/img/light-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/light-3x.png -------------------------------------------------------------------------------- /web/splash/img/light-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/web/splash/img/light-4x.png -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robert-Stackflow/Loftify/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------