├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── instances.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── PRIVACY_POLICY.md ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── development │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── thunder │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── icon.png │ │ │ └── splash.png │ │ │ ├── drawable-mdpi │ │ │ ├── icon.png │ │ │ └── splash.png │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── icon.png │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── icon.png │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── icon.png │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── raw │ │ │ └── keep.xml │ │ │ ├── values-night-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── network_security_config.xml │ │ ├── production │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── ca │ └── isrgrootx1.pem ├── logo.png ├── logo_android.png ├── logo_android_background.png ├── logo_android_development.png ├── logo_android_monochrome.png ├── logo_android_monochrome_development.png ├── logo_development.png └── logo_monochrome.png ├── devtools_options.yaml ├── docker ├── Dockerfile └── DockerfileWeb ├── docs ├── assets │ ├── screenshot_1.png │ ├── screenshot_2.png │ ├── screenshot_3.png │ └── screenshot_4.png └── badges │ ├── app_store.svg │ ├── github.png │ ├── google_play.svg │ └── izzy_on_droid.png ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ └── en-US │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1_en-US.png │ │ ├── 2_en-US.png │ │ ├── 3_en-US.png │ │ └── 4_en-US.png │ ├── short_description.txt │ ├── title.txt │ └── video.txt ├── flutter_launcher_icons-development.yaml ├── flutter_launcher_icons-production.yaml ├── fonts ├── README.md ├── Thunder.ttf └── config.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Gemfile ├── Open In Thunder │ ├── Info.plist │ ├── Resources │ │ ├── _locales │ │ │ └── en │ │ │ │ └── messages.json │ │ ├── content.js │ │ ├── images │ │ │ ├── icon-128.png │ │ │ ├── icon-256.png │ │ │ ├── icon-48.png │ │ │ ├── icon-512.png │ │ │ ├── icon-64.png │ │ │ ├── icon-96.png │ │ │ ├── toolbar-icon-16.png │ │ │ ├── toolbar-icon-19.png │ │ │ ├── toolbar-icon-32.png │ │ │ ├── toolbar-icon-38.png │ │ │ ├── toolbar-icon-48.png │ │ │ └── toolbar-icon-72.png │ │ ├── manifest.json │ │ ├── popup.css │ │ └── popup.html │ └── SafariWebExtensionHandler.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── Open In Thunder.xcscheme │ │ ├── development.xcscheme │ │ └── production.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon-development.appiconset │ │ │ ├── AppIcon-development-1024x1024@1x.png │ │ │ ├── AppIcon-development-20x20@1x.png │ │ │ ├── AppIcon-development-20x20@2x.png │ │ │ ├── AppIcon-development-20x20@3x.png │ │ │ ├── AppIcon-development-29x29@1x.png │ │ │ ├── AppIcon-development-29x29@2x.png │ │ │ ├── AppIcon-development-29x29@3x.png │ │ │ ├── AppIcon-development-40x40@1x.png │ │ │ ├── AppIcon-development-40x40@2x.png │ │ │ ├── AppIcon-development-40x40@3x.png │ │ │ ├── AppIcon-development-50x50@1x.png │ │ │ ├── AppIcon-development-50x50@2x.png │ │ │ ├── AppIcon-development-57x57@1x.png │ │ │ ├── AppIcon-development-57x57@2x.png │ │ │ ├── AppIcon-development-60x60@2x.png │ │ │ ├── AppIcon-development-60x60@3x.png │ │ │ ├── AppIcon-development-72x72@1x.png │ │ │ ├── AppIcon-development-72x72@2x.png │ │ │ ├── AppIcon-development-76x76@1x.png │ │ │ ├── AppIcon-development-76x76@2x.png │ │ │ ├── AppIcon-development-83.5x83.5@2x.png │ │ │ └── Contents.json │ │ ├── AppIcon-production.appiconset │ │ │ ├── AppIcon-production-1024x1024@1x.png │ │ │ ├── AppIcon-production-20x20@1x.png │ │ │ ├── AppIcon-production-20x20@2x.png │ │ │ ├── AppIcon-production-20x20@3x.png │ │ │ ├── AppIcon-production-29x29@1x.png │ │ │ ├── AppIcon-production-29x29@2x.png │ │ │ ├── AppIcon-production-29x29@3x.png │ │ │ ├── AppIcon-production-40x40@1x.png │ │ │ ├── AppIcon-production-40x40@2x.png │ │ │ ├── AppIcon-production-40x40@3x.png │ │ │ ├── AppIcon-production-50x50@1x.png │ │ │ ├── AppIcon-production-50x50@2x.png │ │ │ ├── AppIcon-production-57x57@1x.png │ │ │ ├── AppIcon-production-57x57@2x.png │ │ │ ├── AppIcon-production-60x60@2x.png │ │ │ ├── AppIcon-production-60x60@3x.png │ │ │ ├── AppIcon-production-72x72@1x.png │ │ │ ├── AppIcon-production-72x72@2x.png │ │ │ ├── AppIcon-production-76x76@1x.png │ │ │ ├── AppIcon-production-76x76@2x.png │ │ │ ├── AppIcon-production-83.5x83.5@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchBackground.imageset │ │ │ ├── Contents.json │ │ │ └── background.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 │ └── Runner.entitlements ├── RunnerTests │ └── RunnerTests.swift └── fastlane │ ├── Appfile │ └── Fastfile ├── l10n.yaml ├── lib ├── instances.dart ├── l10n │ ├── app_ar.arb │ ├── app_be.arb │ ├── app_cs.arb │ ├── app_de.arb │ ├── app_en.arb │ ├── app_en_AU.arb │ ├── app_en_GB.arb │ ├── app_eo.arb │ ├── app_es.arb │ ├── app_fi.arb │ ├── app_fr.arb │ ├── app_hu.arb │ ├── app_it.arb │ ├── app_nb.arb │ ├── app_nl.arb │ ├── app_pl.arb │ ├── app_pt.arb │ ├── app_pt_BR.arb │ ├── app_ru.arb │ ├── app_sk.arb │ ├── app_sv.arb │ ├── app_ta.arb │ ├── app_tr.arb │ ├── app_uk.arb │ ├── app_zh.arb │ ├── app_zh_Hans.arb │ └── generated │ │ ├── app_localizations.dart │ │ ├── app_localizations_ar.dart │ │ ├── app_localizations_be.dart │ │ ├── app_localizations_cs.dart │ │ ├── app_localizations_de.dart │ │ ├── app_localizations_en.dart │ │ ├── app_localizations_eo.dart │ │ ├── app_localizations_es.dart │ │ ├── app_localizations_fi.dart │ │ ├── app_localizations_fr.dart │ │ ├── app_localizations_hu.dart │ │ ├── app_localizations_it.dart │ │ ├── app_localizations_nb.dart │ │ ├── app_localizations_nl.dart │ │ ├── app_localizations_pl.dart │ │ ├── app_localizations_pt.dart │ │ ├── app_localizations_ru.dart │ │ ├── app_localizations_sk.dart │ │ ├── app_localizations_sv.dart │ │ ├── app_localizations_ta.dart │ │ ├── app_localizations_tr.dart │ │ ├── app_localizations_uk.dart │ │ └── app_localizations_zh.dart ├── main.dart └── src │ ├── app │ ├── bloc │ │ ├── thunder_bloc.dart │ │ ├── thunder_event.dart │ │ └── thunder_state.dart │ ├── cubits │ │ ├── deep_links_cubit │ │ │ ├── deep_links_cubit.dart │ │ │ └── deep_links_state.dart │ │ ├── network_checker_cubit │ │ │ ├── network_checker_cubit.dart │ │ │ └── network_checker_state.dart │ │ └── notifications_cubit │ │ │ ├── notifications_cubit.dart │ │ │ └── notifications_state.dart │ ├── pages │ │ ├── notifications_pages.dart │ │ └── thunder_page.dart │ ├── routing │ │ ├── deep_link.dart │ │ ├── deep_link_enums.dart │ │ └── swipeable_page_route.dart │ ├── theme │ │ ├── bloc │ │ │ ├── theme_bloc.dart │ │ │ ├── theme_event.dart │ │ │ └── theme_state.dart │ │ └── theme.dart │ ├── thunder.dart │ ├── utils │ │ ├── global_context.dart │ │ ├── navigation.dart │ │ └── share_intent_handler.dart │ └── widgets │ │ ├── bottom_nav_bar.dart │ │ └── thunder_icons.dart │ ├── core │ ├── cache │ │ ├── image_dimension_cache.dart │ │ └── platform_version_cache.dart │ ├── config │ │ └── app_config.dart │ ├── database │ │ ├── database.dart │ │ ├── database.g.dart │ │ ├── database.steps.dart │ │ ├── database_utils.dart │ │ ├── schemas │ │ │ └── thunder │ │ │ │ ├── drift_schema_v1.json │ │ │ │ ├── drift_schema_v2.json │ │ │ │ ├── drift_schema_v3.json │ │ │ │ ├── drift_schema_v4.json │ │ │ │ ├── drift_schema_v5.json │ │ │ │ ├── drift_schema_v6.json │ │ │ │ └── drift_schema_v7.json │ │ ├── tables.dart │ │ └── type_converters.dart │ ├── enums │ │ ├── action_color.dart │ │ ├── browser_mode.dart │ │ ├── comment_sort_type.dart │ │ ├── custom_theme_type.dart │ │ ├── enums.dart │ │ ├── fab_action.dart │ │ ├── feed_card_divider_thickness.dart │ │ ├── feed_list_type.dart │ │ ├── font_scale.dart │ │ ├── full_name.dart │ │ ├── image_caching_mode.dart │ │ ├── internet_connection_type.dart │ │ ├── local_settings.dart │ │ ├── media_type.dart │ │ ├── meta_search_type.dart │ │ ├── nested_comment_indicator.dart │ │ ├── post_body_view_type.dart │ │ ├── post_sort_type.dart │ │ ├── subscription_status.dart │ │ ├── swipe_action.dart │ │ ├── theme_type.dart │ │ ├── threadiverse_platform.dart │ │ ├── user_type.dart │ │ ├── video_auto_play.dart │ │ ├── video_playback_speed.dart │ │ ├── video_player_mode.dart │ │ └── view_mode.dart │ ├── models │ │ ├── media.dart │ │ ├── models.dart │ │ ├── thunder_comment_report.dart │ │ ├── thunder_instance_info.dart │ │ ├── thunder_language.dart │ │ ├── thunder_local_user.dart │ │ ├── thunder_my_user.dart │ │ ├── thunder_post_report.dart │ │ ├── thunder_private_message.dart │ │ ├── thunder_site.dart │ │ ├── thunder_site_response.dart │ │ ├── thunder_tagline.dart │ │ └── version.dart │ ├── network │ │ ├── lemmy_api.dart │ │ └── piefed_api.dart │ ├── singletons │ │ └── preferences.dart │ └── update │ │ └── check_github_update.dart │ ├── features │ ├── account │ │ ├── account.dart │ │ ├── data │ │ │ ├── models │ │ │ │ ├── account.dart │ │ │ │ └── models.dart │ │ │ └── repositories │ │ │ │ └── account_repository_impl.dart │ │ ├── domain │ │ │ └── repositories │ │ │ │ └── account_repository.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── profile_bloc.dart │ │ │ ├── profile_event.dart │ │ │ └── profile_state.dart │ │ │ ├── pages │ │ │ ├── account_page.dart │ │ │ ├── login_page.dart │ │ │ └── pages.dart │ │ │ ├── utils │ │ │ ├── profiles.dart │ │ │ └── utils.dart │ │ │ └── widgets │ │ │ ├── account_page_app_bar.dart │ │ │ ├── account_placeholder.dart │ │ │ ├── profile_modal_body.dart │ │ │ └── widgets.dart │ ├── comment │ │ ├── comment.dart │ │ ├── data │ │ │ ├── models │ │ │ │ ├── comment_node.dart │ │ │ │ └── thunder_comment.dart │ │ │ └── repositories │ │ │ │ └── comment_repository_impl.dart │ │ ├── domain │ │ │ ├── enums │ │ │ │ └── comment_action.dart │ │ │ └── repositories │ │ │ │ └── comment_repository.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── create_comment_cubit.dart │ │ │ └── create_comment_state.dart │ │ │ ├── pages │ │ │ ├── create_comment_page.dart │ │ │ └── pages.dart │ │ │ ├── utils │ │ │ └── comment.dart │ │ │ └── widgets │ │ │ ├── comment_bottom_sheet │ │ │ ├── comment_action_bottom_sheet.dart │ │ │ ├── comment_comment_action_bottom_sheet.dart │ │ │ └── general_comment_action_bottom_sheet.dart │ │ │ ├── comment_card │ │ │ ├── additional_comment_card.dart │ │ │ ├── comment_card.dart │ │ │ ├── comment_card_background.dart │ │ │ ├── comment_card_button_actions.dart │ │ │ ├── comment_card_header │ │ │ │ ├── comment_card_header.dart │ │ │ │ ├── comment_card_header_date.dart │ │ │ │ ├── comment_card_header_reply_count.dart │ │ │ │ └── comment_card_header_score.dart │ │ │ ├── comment_content.dart │ │ │ └── comment_depth_indicator.dart │ │ │ ├── comment_list_entry.dart │ │ │ └── widgets.dart │ ├── community │ │ ├── community.dart │ │ ├── data │ │ │ ├── datasources │ │ │ │ ├── anonymous_subscriptions_local.dart │ │ │ │ ├── anonymous_subscriptions_local_data_source.dart │ │ │ │ └── favorite_local_data_source.dart │ │ │ ├── models │ │ │ │ └── thunder_community.dart │ │ │ └── repositories │ │ │ │ └── community_repository_impl.dart │ │ ├── domain │ │ │ └── enums │ │ │ │ └── community_action.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── anonymous_subscriptions_bloc.dart │ │ │ ├── anonymous_subscriptions_event.dart │ │ │ └── anonymous_subscriptions_state.dart │ │ │ └── widgets │ │ │ ├── community_drawer.dart │ │ │ ├── community_header │ │ │ ├── community_header.dart │ │ │ └── community_header_actions.dart │ │ │ ├── community_information.dart │ │ │ ├── community_list_entry.dart │ │ │ ├── post_card.dart │ │ │ ├── post_card_actions.dart │ │ │ ├── post_card_metadata.dart │ │ │ ├── post_card_view_comfortable.dart │ │ │ └── post_card_view_compact.dart │ ├── drafts │ │ ├── data │ │ │ └── models │ │ │ │ └── draft.dart │ │ ├── domain │ │ │ └── enums │ │ │ │ └── draft_type.dart │ │ └── drafts.dart │ ├── feed │ │ ├── domain │ │ │ └── enums │ │ │ │ ├── enums.dart │ │ │ │ └── feed_type_subview.dart │ │ ├── feed.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── feed_bloc.dart │ │ │ ├── feed_event.dart │ │ │ └── feed_state.dart │ │ │ ├── pages │ │ │ ├── feed_page.dart │ │ │ └── pages.dart │ │ │ ├── utils │ │ │ ├── community.dart │ │ │ ├── community_share.dart │ │ │ ├── post.dart │ │ │ ├── user_share.dart │ │ │ └── utils.dart │ │ │ └── widgets │ │ │ ├── feed_card_divider.dart │ │ │ ├── feed_comment_card_list.dart │ │ │ ├── feed_fab.dart │ │ │ ├── feed_page_app_bar.dart │ │ │ ├── feed_post_card_list.dart │ │ │ ├── tagline.dart │ │ │ └── widgets.dart │ ├── inbox │ │ ├── domain │ │ │ └── enums │ │ │ │ └── inbox_type.dart │ │ ├── inbox.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── inbox_bloc.dart │ │ │ ├── inbox_event.dart │ │ │ └── inbox_state.dart │ │ │ ├── pages │ │ │ └── inbox_page.dart │ │ │ └── widgets │ │ │ ├── inbox_mentions_view.dart │ │ │ ├── inbox_private_messages_view.dart │ │ │ └── inbox_replies_view.dart │ ├── instance │ │ ├── data │ │ │ └── repositories │ │ │ │ └── instance_repository.dart │ │ ├── domain │ │ │ └── enums │ │ │ │ └── instance_action.dart │ │ ├── instance.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── instance_page_cubit.dart │ │ │ └── instance_page_state.dart │ │ │ ├── pages │ │ │ └── instance_page.dart │ │ │ └── widgets │ │ │ ├── instance_action_bottom_sheet.dart │ │ │ ├── instance_list_entry.dart │ │ │ └── instance_view.dart │ ├── moderator │ │ ├── domain │ │ │ └── enums │ │ │ │ └── report_action.dart │ │ ├── moderator.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── report_bloc.dart │ │ │ ├── report_event.dart │ │ │ └── report_state.dart │ │ │ ├── pages │ │ │ └── report_page.dart │ │ │ ├── utils │ │ │ └── report.dart │ │ │ └── widgets │ │ │ └── report_page_filter_bottom_sheet.dart │ ├── modlog │ │ ├── data │ │ │ ├── models │ │ │ │ ├── models.dart │ │ │ │ └── modlog_event_item.dart │ │ │ └── repositories │ │ │ │ └── modlog_repository.dart │ │ ├── domain │ │ │ └── enums │ │ │ │ ├── enums.dart │ │ │ │ ├── modlog_action_type.dart │ │ │ │ └── modlog_action_type_category.dart │ │ ├── modlog.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── modlog_cubit.dart │ │ │ ├── modlog_cubit.freezed.dart │ │ │ └── modlog_state.dart │ │ │ ├── pages │ │ │ ├── modlog_page.dart │ │ │ └── pages.dart │ │ │ └── widgets │ │ │ ├── modlog_feed_page_app_bar.dart │ │ │ ├── modlog_filter_picker.dart │ │ │ ├── modlog_item_card.dart │ │ │ ├── modlog_item_context_card.dart │ │ │ └── widgets.dart │ ├── notification │ │ ├── data │ │ │ └── repositories │ │ │ │ └── notification_repository.dart │ │ ├── domain │ │ │ └── enums │ │ │ │ └── notification_type.dart │ │ ├── notification.dart │ │ ├── notifications.dart │ │ └── presentation │ │ │ └── utils │ │ │ ├── android_notification.dart │ │ │ ├── apns.dart │ │ │ ├── local_notifications.dart │ │ │ ├── notification_payload.dart │ │ │ ├── notification_server.dart │ │ │ ├── notification_settings.dart │ │ │ ├── notification_utils.dart │ │ │ └── unified_push.dart │ ├── post │ │ ├── data │ │ │ ├── models │ │ │ │ └── thunder_post.dart │ │ │ └── repositories │ │ │ │ └── post_repository.dart │ │ ├── domain │ │ │ └── enums │ │ │ │ ├── enums.dart │ │ │ │ ├── post_action.dart │ │ │ │ ├── post_card_metadata_item.dart │ │ │ │ └── post_status.dart │ │ ├── post.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── post_bloc.dart │ │ │ ├── post_event.dart │ │ │ └── post_state.dart │ │ │ ├── cubit │ │ │ ├── create_post_cubit.dart │ │ │ └── create_post_state.dart │ │ │ ├── pages │ │ │ ├── create_post_page.dart │ │ │ ├── pages.dart │ │ │ └── post_page.dart │ │ │ ├── utils │ │ │ ├── post.dart │ │ │ ├── user_label_utils.dart │ │ │ └── utils.dart │ │ │ └── widgets │ │ │ ├── post_body │ │ │ ├── post_body.dart │ │ │ ├── post_body_action_bar.dart │ │ │ ├── post_body_metadata.dart │ │ │ ├── post_body_preview.dart │ │ │ └── post_body_title.dart │ │ │ ├── post_bottom_sheet │ │ │ ├── community_post_action_bottom_sheet.dart │ │ │ ├── general_post_action_bottom_sheet.dart │ │ │ ├── post_action_bottom_sheet.dart │ │ │ └── post_post_action_bottom_sheet.dart │ │ │ ├── post_card_title.dart │ │ │ ├── post_page_app_bar.dart │ │ │ ├── post_page_fab.dart │ │ │ ├── post_status_icon.dart │ │ │ └── widgets.dart │ ├── search │ │ ├── data │ │ │ └── repositories │ │ │ │ └── search_repository.dart │ │ ├── presentation │ │ │ ├── bloc │ │ │ │ ├── search_bloc.dart │ │ │ │ ├── search_event.dart │ │ │ │ └── search_state.dart │ │ │ ├── pages │ │ │ │ └── search_page.dart │ │ │ └── utils │ │ │ │ └── search_utils.dart │ │ └── search.dart │ ├── settings │ │ ├── presentation │ │ │ ├── pages │ │ │ │ ├── about_settings_page.dart │ │ │ │ ├── accessibility_settings_page.dart │ │ │ │ ├── appearance_settings_page.dart │ │ │ │ ├── comment_appearance_settings_page.dart │ │ │ │ ├── debug_settings_page.dart │ │ │ │ ├── fab_settings_page.dart │ │ │ │ ├── filter_settings_page.dart │ │ │ │ ├── general_settings_page.dart │ │ │ │ ├── gesture_settings_page.dart │ │ │ │ ├── pages.dart │ │ │ │ ├── post_appearance_settings_page.dart │ │ │ │ ├── settings_page.dart │ │ │ │ ├── theme_settings_page.dart │ │ │ │ ├── user_labels_settings_page.dart │ │ │ │ └── video_player_settings.dart │ │ │ ├── utils │ │ │ │ ├── settings.dart │ │ │ │ └── utils.dart │ │ │ └── widgets │ │ │ │ ├── accessibility_profile.dart │ │ │ │ ├── action_color_setting_widget.dart │ │ │ │ ├── discussion_language_selector.dart │ │ │ │ ├── expandable_option.dart │ │ │ │ ├── list_option.dart │ │ │ │ ├── post_placeholder.dart │ │ │ │ ├── settings_list_tile.dart │ │ │ │ ├── swipe_picker.dart │ │ │ │ ├── toggle_option.dart │ │ │ │ └── widgets.dart │ │ └── settings.dart │ └── user │ │ ├── data │ │ ├── models │ │ │ ├── thunder_user.dart │ │ │ └── user_label.dart │ │ └── repositories │ │ │ └── user_repository.dart │ │ ├── domain │ │ └── enums │ │ │ └── user_action.dart │ │ ├── presentation │ │ ├── bloc │ │ │ ├── user_settings_bloc.dart │ │ │ ├── user_settings_event.dart │ │ │ └── user_settings_state.dart │ │ ├── pages │ │ │ ├── media_management_page.dart │ │ │ ├── user_settings_block_page.dart │ │ │ └── user_settings_page.dart │ │ ├── utils │ │ │ ├── logout_dialog.dart │ │ │ ├── restore_user.dart │ │ │ └── user_groups.dart │ │ └── widgets │ │ │ ├── user_action_bottom_sheet.dart │ │ │ ├── user_header │ │ │ ├── user_header.dart │ │ │ └── user_header_actions.dart │ │ │ ├── user_indicator.dart │ │ │ ├── user_information.dart │ │ │ ├── user_label_chip.dart │ │ │ ├── user_list_entry.dart │ │ │ └── user_selector.dart │ │ └── user.dart │ └── shared │ ├── bottom_sheet_action.dart │ ├── comment_reference.dart │ ├── comment_sort_picker.dart │ ├── conditional_parent_widget.dart │ ├── cross_posts.dart │ ├── dialogs.dart │ ├── divider.dart │ ├── error_message.dart │ ├── full_name_widgets.dart │ ├── gesture_fab.dart │ ├── icon_text.dart │ ├── image_preview.dart │ ├── images │ ├── image_preview.dart │ └── image_viewer.dart │ ├── input_dialogs.dart │ ├── language_selector.dart │ ├── link_information.dart │ ├── markdown │ ├── common_markdown_body.dart │ ├── extended_markdown.dart │ ├── markdown_lemmy_link.dart │ ├── markdown_spoiler.dart │ ├── markdown_subsuperscript.dart │ └── markdown_utils.dart │ ├── marquee_widget.dart │ ├── multi_picker_item.dart │ ├── pages │ └── loading_page.dart │ ├── persistent_header.dart │ ├── picker_item.dart │ ├── profile_site_info_cache.dart │ ├── reply_to_preview_actions.dart │ ├── share │ ├── advanced_share_sheet.dart │ └── share_action_bottom_sheet.dart │ ├── snackbar.dart │ ├── sort_picker.dart │ ├── utils │ ├── bottom_sheet_list_picker.dart │ ├── cache.dart │ ├── colors.dart │ ├── constants.dart │ ├── date_time.dart │ ├── debounce.dart │ ├── error_messages.dart │ ├── instance.dart │ ├── language │ │ └── language.dart │ ├── links.dart │ ├── media │ │ ├── image.dart │ │ └── video.dart │ ├── numbers.dart │ ├── preferences.dart │ ├── swipe.dart │ ├── text_input_formatter.dart │ ├── video_player │ │ ├── src │ │ │ ├── thunder_video_player.dart │ │ │ └── thunder_youtube_player.dart │ │ └── video_player.dart │ └── web_utils.dart │ └── widgets │ ├── avatars │ ├── community_avatar.dart │ ├── instance_avatar.dart │ └── user_avatar.dart │ ├── chips │ ├── community_chip.dart │ ├── thunder_action_chip.dart │ └── user_chip.dart │ ├── comment_navigator_fab.dart │ ├── media │ ├── compact_thumbnail_preview.dart │ ├── media_type_badge.dart │ ├── media_view.dart │ └── media_view_text.dart │ ├── multi_action_dismissible.dart │ ├── text │ ├── scalable_text.dart │ └── selectable_text_modal.dart │ ├── thunder_popup_menu_item.dart │ └── webview.dart ├── pubspec.lock ├── pubspec.yaml ├── scripts ├── build-android.dart ├── build.dart ├── docker-build-android.sh ├── docker-build-web.sh ├── docker-dev-android.sh └── docker-run-web.sh ├── test ├── drift │ └── thunder │ │ ├── generated │ │ ├── schema.dart │ │ ├── schema_v1.dart │ │ ├── schema_v2.dart │ │ ├── schema_v3.dart │ │ ├── schema_v4.dart │ │ ├── schema_v5.dart │ │ ├── schema_v6.dart │ │ └── schema_v7.dart │ │ └── migration_test.dart ├── features │ └── comment │ │ └── comment_node_test.dart ├── thunder_test.dart ├── utils │ └── user_groups_test.dart └── widgets │ └── base_widget.dart ├── thunder.iml └── web ├── drift_worker.js ├── 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 └── sqlite3.wasm /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/instances.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.github/workflows/instances.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /android/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/Gemfile.lock -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/drawable-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/thunder/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/kotlin/com/example/thunder/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/raw/keep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/raw/keep.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/production/res/drawable-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/drawable-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/production/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/ca/isrgrootx1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/ca/isrgrootx1.pem -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo_android.png -------------------------------------------------------------------------------- /assets/logo_android_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo_android_background.png -------------------------------------------------------------------------------- /assets/logo_android_development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo_android_development.png -------------------------------------------------------------------------------- /assets/logo_android_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo_android_monochrome.png -------------------------------------------------------------------------------- /assets/logo_android_monochrome_development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo_android_monochrome_development.png -------------------------------------------------------------------------------- /assets/logo_development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo_development.png -------------------------------------------------------------------------------- /assets/logo_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/assets/logo_monochrome.png -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/DockerfileWeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docker/DockerfileWeb -------------------------------------------------------------------------------- /docs/assets/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/assets/screenshot_1.png -------------------------------------------------------------------------------- /docs/assets/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/assets/screenshot_2.png -------------------------------------------------------------------------------- /docs/assets/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/assets/screenshot_3.png -------------------------------------------------------------------------------- /docs/assets/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/assets/screenshot_4.png -------------------------------------------------------------------------------- /docs/badges/app_store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/badges/app_store.svg -------------------------------------------------------------------------------- /docs/badges/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/badges/github.png -------------------------------------------------------------------------------- /docs/badges/google_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/badges/google_play.svg -------------------------------------------------------------------------------- /docs/badges/izzy_on_droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/docs/badges/izzy_on_droid.png -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Thunder is an open source, cross-platform Lemmy client -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Thunder for Lemmy -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flutter_launcher_icons-development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/flutter_launcher_icons-development.yaml -------------------------------------------------------------------------------- /flutter_launcher_icons-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/flutter_launcher_icons-production.yaml -------------------------------------------------------------------------------- /fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fonts/README.md -------------------------------------------------------------------------------- /fonts/Thunder.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fonts/Thunder.ttf -------------------------------------------------------------------------------- /fonts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/fonts/config.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /ios/Open In Thunder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Info.plist -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/_locales/en/messages.json -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/content.js -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/icon-128.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/icon-256.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/icon-48.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/icon-512.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/icon-64.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/icon-96.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/toolbar-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/toolbar-icon-16.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/toolbar-icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/toolbar-icon-19.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/toolbar-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/toolbar-icon-32.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/toolbar-icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/toolbar-icon-38.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/toolbar-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/toolbar-icon-48.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/images/toolbar-icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/images/toolbar-icon-72.png -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/manifest.json -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/popup.css -------------------------------------------------------------------------------- /ios/Open In Thunder/Resources/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/Resources/popup.html -------------------------------------------------------------------------------- /ios/Open In Thunder/SafariWebExtensionHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Open In Thunder/SafariWebExtensionHandler.swift -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Open In Thunder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Open In Thunder.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/AppIcon-development-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/AppIcon-production-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/fastlane/Appfile -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/instances.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/instances.dart -------------------------------------------------------------------------------- /lib/l10n/app_ar.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_ar.arb -------------------------------------------------------------------------------- /lib/l10n/app_be.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_be.arb -------------------------------------------------------------------------------- /lib/l10n/app_cs.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_cs.arb -------------------------------------------------------------------------------- /lib/l10n/app_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_de.arb -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_en_AU.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_en_AU.arb -------------------------------------------------------------------------------- /lib/l10n/app_en_GB.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_en_GB.arb -------------------------------------------------------------------------------- /lib/l10n/app_eo.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_eo.arb -------------------------------------------------------------------------------- /lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /lib/l10n/app_fi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_fi.arb -------------------------------------------------------------------------------- /lib/l10n/app_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_fr.arb -------------------------------------------------------------------------------- /lib/l10n/app_hu.arb: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lib/l10n/app_it.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_it.arb -------------------------------------------------------------------------------- /lib/l10n/app_nb.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_nb.arb -------------------------------------------------------------------------------- /lib/l10n/app_nl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_nl.arb -------------------------------------------------------------------------------- /lib/l10n/app_pl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_pl.arb -------------------------------------------------------------------------------- /lib/l10n/app_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_pt.arb -------------------------------------------------------------------------------- /lib/l10n/app_pt_BR.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_pt_BR.arb -------------------------------------------------------------------------------- /lib/l10n/app_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_ru.arb -------------------------------------------------------------------------------- /lib/l10n/app_sk.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_sk.arb -------------------------------------------------------------------------------- /lib/l10n/app_sv.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_sv.arb -------------------------------------------------------------------------------- /lib/l10n/app_ta.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_ta.arb -------------------------------------------------------------------------------- /lib/l10n/app_tr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_tr.arb -------------------------------------------------------------------------------- /lib/l10n/app_uk.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_uk.arb -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /lib/l10n/app_zh_Hans.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/app_zh_Hans.arb -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_ar.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_be.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_be.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_cs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_cs.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_de.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_de.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_en.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_eo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_eo.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_es.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_es.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_fi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_fi.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_fr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_fr.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_hu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_hu.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_it.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_it.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_nb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_nb.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_nl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_nl.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_pl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_pl.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_pt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_pt.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ru.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_ru.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_sk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_sk.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_sv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_sv.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_ta.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_tr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_tr.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_uk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_uk.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_zh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/l10n/generated/app_localizations_zh.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/app/bloc/thunder_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/bloc/thunder_bloc.dart -------------------------------------------------------------------------------- /lib/src/app/bloc/thunder_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/bloc/thunder_event.dart -------------------------------------------------------------------------------- /lib/src/app/bloc/thunder_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/bloc/thunder_state.dart -------------------------------------------------------------------------------- /lib/src/app/cubits/deep_links_cubit/deep_links_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/cubits/deep_links_cubit/deep_links_cubit.dart -------------------------------------------------------------------------------- /lib/src/app/cubits/deep_links_cubit/deep_links_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/cubits/deep_links_cubit/deep_links_state.dart -------------------------------------------------------------------------------- /lib/src/app/cubits/network_checker_cubit/network_checker_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/cubits/network_checker_cubit/network_checker_cubit.dart -------------------------------------------------------------------------------- /lib/src/app/cubits/network_checker_cubit/network_checker_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/cubits/network_checker_cubit/network_checker_state.dart -------------------------------------------------------------------------------- /lib/src/app/cubits/notifications_cubit/notifications_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/cubits/notifications_cubit/notifications_cubit.dart -------------------------------------------------------------------------------- /lib/src/app/cubits/notifications_cubit/notifications_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/cubits/notifications_cubit/notifications_state.dart -------------------------------------------------------------------------------- /lib/src/app/pages/notifications_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/pages/notifications_pages.dart -------------------------------------------------------------------------------- /lib/src/app/pages/thunder_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/pages/thunder_page.dart -------------------------------------------------------------------------------- /lib/src/app/routing/deep_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/routing/deep_link.dart -------------------------------------------------------------------------------- /lib/src/app/routing/deep_link_enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/routing/deep_link_enums.dart -------------------------------------------------------------------------------- /lib/src/app/routing/swipeable_page_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/routing/swipeable_page_route.dart -------------------------------------------------------------------------------- /lib/src/app/theme/bloc/theme_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/theme/bloc/theme_bloc.dart -------------------------------------------------------------------------------- /lib/src/app/theme/bloc/theme_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/theme/bloc/theme_event.dart -------------------------------------------------------------------------------- /lib/src/app/theme/bloc/theme_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/theme/bloc/theme_state.dart -------------------------------------------------------------------------------- /lib/src/app/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/theme/theme.dart -------------------------------------------------------------------------------- /lib/src/app/thunder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/thunder.dart -------------------------------------------------------------------------------- /lib/src/app/utils/global_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/utils/global_context.dart -------------------------------------------------------------------------------- /lib/src/app/utils/navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/utils/navigation.dart -------------------------------------------------------------------------------- /lib/src/app/utils/share_intent_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/utils/share_intent_handler.dart -------------------------------------------------------------------------------- /lib/src/app/widgets/bottom_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/widgets/bottom_nav_bar.dart -------------------------------------------------------------------------------- /lib/src/app/widgets/thunder_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/app/widgets/thunder_icons.dart -------------------------------------------------------------------------------- /lib/src/core/cache/image_dimension_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/cache/image_dimension_cache.dart -------------------------------------------------------------------------------- /lib/src/core/cache/platform_version_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/cache/platform_version_cache.dart -------------------------------------------------------------------------------- /lib/src/core/config/app_config.dart: -------------------------------------------------------------------------------- 1 | const String currentVersion = '0.8.1+89'; 2 | -------------------------------------------------------------------------------- /lib/src/core/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/database.dart -------------------------------------------------------------------------------- /lib/src/core/database/database.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/database.g.dart -------------------------------------------------------------------------------- /lib/src/core/database/database.steps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/database.steps.dart -------------------------------------------------------------------------------- /lib/src/core/database/database_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/database_utils.dart -------------------------------------------------------------------------------- /lib/src/core/database/schemas/thunder/drift_schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/schemas/thunder/drift_schema_v1.json -------------------------------------------------------------------------------- /lib/src/core/database/schemas/thunder/drift_schema_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/schemas/thunder/drift_schema_v2.json -------------------------------------------------------------------------------- /lib/src/core/database/schemas/thunder/drift_schema_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/schemas/thunder/drift_schema_v3.json -------------------------------------------------------------------------------- /lib/src/core/database/schemas/thunder/drift_schema_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/schemas/thunder/drift_schema_v4.json -------------------------------------------------------------------------------- /lib/src/core/database/schemas/thunder/drift_schema_v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/schemas/thunder/drift_schema_v5.json -------------------------------------------------------------------------------- /lib/src/core/database/schemas/thunder/drift_schema_v6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/schemas/thunder/drift_schema_v6.json -------------------------------------------------------------------------------- /lib/src/core/database/schemas/thunder/drift_schema_v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/schemas/thunder/drift_schema_v7.json -------------------------------------------------------------------------------- /lib/src/core/database/tables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/tables.dart -------------------------------------------------------------------------------- /lib/src/core/database/type_converters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/database/type_converters.dart -------------------------------------------------------------------------------- /lib/src/core/enums/action_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/action_color.dart -------------------------------------------------------------------------------- /lib/src/core/enums/browser_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/browser_mode.dart -------------------------------------------------------------------------------- /lib/src/core/enums/comment_sort_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/comment_sort_type.dart -------------------------------------------------------------------------------- /lib/src/core/enums/custom_theme_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/custom_theme_type.dart -------------------------------------------------------------------------------- /lib/src/core/enums/enums.dart: -------------------------------------------------------------------------------- 1 | export 'feed_list_type.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/enums/fab_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/fab_action.dart -------------------------------------------------------------------------------- /lib/src/core/enums/feed_card_divider_thickness.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/feed_card_divider_thickness.dart -------------------------------------------------------------------------------- /lib/src/core/enums/feed_list_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/feed_list_type.dart -------------------------------------------------------------------------------- /lib/src/core/enums/font_scale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/font_scale.dart -------------------------------------------------------------------------------- /lib/src/core/enums/full_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/full_name.dart -------------------------------------------------------------------------------- /lib/src/core/enums/image_caching_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/image_caching_mode.dart -------------------------------------------------------------------------------- /lib/src/core/enums/internet_connection_type.dart: -------------------------------------------------------------------------------- 1 | enum InternetConnectionType { wifi, mobile, unknown } 2 | -------------------------------------------------------------------------------- /lib/src/core/enums/local_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/local_settings.dart -------------------------------------------------------------------------------- /lib/src/core/enums/media_type.dart: -------------------------------------------------------------------------------- 1 | enum MediaType { image, video, link, text } 2 | -------------------------------------------------------------------------------- /lib/src/core/enums/meta_search_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/meta_search_type.dart -------------------------------------------------------------------------------- /lib/src/core/enums/nested_comment_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/nested_comment_indicator.dart -------------------------------------------------------------------------------- /lib/src/core/enums/post_body_view_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/post_body_view_type.dart -------------------------------------------------------------------------------- /lib/src/core/enums/post_sort_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/post_sort_type.dart -------------------------------------------------------------------------------- /lib/src/core/enums/subscription_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/subscription_status.dart -------------------------------------------------------------------------------- /lib/src/core/enums/swipe_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/swipe_action.dart -------------------------------------------------------------------------------- /lib/src/core/enums/theme_type.dart: -------------------------------------------------------------------------------- 1 | enum ThemeType { system, light, dark, pureBlack } 2 | -------------------------------------------------------------------------------- /lib/src/core/enums/threadiverse_platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/threadiverse_platform.dart -------------------------------------------------------------------------------- /lib/src/core/enums/user_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/user_type.dart -------------------------------------------------------------------------------- /lib/src/core/enums/video_auto_play.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/video_auto_play.dart -------------------------------------------------------------------------------- /lib/src/core/enums/video_playback_speed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/video_playback_speed.dart -------------------------------------------------------------------------------- /lib/src/core/enums/video_player_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/video_player_mode.dart -------------------------------------------------------------------------------- /lib/src/core/enums/view_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/enums/view_mode.dart -------------------------------------------------------------------------------- /lib/src/core/models/media.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/media.dart -------------------------------------------------------------------------------- /lib/src/core/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/models.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_comment_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_comment_report.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_instance_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_instance_info.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_language.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_local_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_local_user.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_my_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_my_user.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_post_report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_post_report.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_private_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_private_message.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_site.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_site.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_site_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_site_response.dart -------------------------------------------------------------------------------- /lib/src/core/models/thunder_tagline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/thunder_tagline.dart -------------------------------------------------------------------------------- /lib/src/core/models/version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/models/version.dart -------------------------------------------------------------------------------- /lib/src/core/network/lemmy_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/network/lemmy_api.dart -------------------------------------------------------------------------------- /lib/src/core/network/piefed_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/network/piefed_api.dart -------------------------------------------------------------------------------- /lib/src/core/singletons/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/singletons/preferences.dart -------------------------------------------------------------------------------- /lib/src/core/update/check_github_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/core/update/check_github_update.dart -------------------------------------------------------------------------------- /lib/src/features/account/account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/account.dart -------------------------------------------------------------------------------- /lib/src/features/account/data/models/account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/data/models/account.dart -------------------------------------------------------------------------------- /lib/src/features/account/data/models/models.dart: -------------------------------------------------------------------------------- 1 | export 'account.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/account/data/repositories/account_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/data/repositories/account_repository_impl.dart -------------------------------------------------------------------------------- /lib/src/features/account/domain/repositories/account_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/domain/repositories/account_repository.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/bloc/profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/bloc/profile_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/bloc/profile_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/bloc/profile_event.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/bloc/profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/bloc/profile_state.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/pages/account_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/pages/account_page.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/pages/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/pages/login_page.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/pages/pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/pages/pages.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/utils/profiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/utils/profiles.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/utils/utils.dart: -------------------------------------------------------------------------------- 1 | export 'profiles.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/account/presentation/widgets/account_page_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/widgets/account_page_app_bar.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/widgets/account_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/widgets/account_placeholder.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/widgets/profile_modal_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/widgets/profile_modal_body.dart -------------------------------------------------------------------------------- /lib/src/features/account/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/account/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/comment/comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/comment.dart -------------------------------------------------------------------------------- /lib/src/features/comment/data/models/comment_node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/data/models/comment_node.dart -------------------------------------------------------------------------------- /lib/src/features/comment/data/models/thunder_comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/data/models/thunder_comment.dart -------------------------------------------------------------------------------- /lib/src/features/comment/data/repositories/comment_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/data/repositories/comment_repository_impl.dart -------------------------------------------------------------------------------- /lib/src/features/comment/domain/enums/comment_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/domain/enums/comment_action.dart -------------------------------------------------------------------------------- /lib/src/features/comment/domain/repositories/comment_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/domain/repositories/comment_repository.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/bloc/create_comment_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/bloc/create_comment_cubit.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/bloc/create_comment_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/bloc/create_comment_state.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/pages/create_comment_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/pages/create_comment_page.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/pages/pages.dart: -------------------------------------------------------------------------------- 1 | export 'create_comment_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/utils/comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/utils/comment.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_bottom_sheet/comment_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_bottom_sheet/comment_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_bottom_sheet/comment_comment_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_bottom_sheet/comment_comment_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_bottom_sheet/general_comment_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_bottom_sheet/general_comment_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/additional_comment_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/additional_comment_card.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_card.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_card_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_card_background.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_card_button_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_card_button_actions.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header_date.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header_date.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header_reply_count.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header_reply_count.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header_score.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_card_header/comment_card_header_score.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_content.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_card/comment_depth_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_card/comment_depth_indicator.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/comment_list_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/comment_list_entry.dart -------------------------------------------------------------------------------- /lib/src/features/comment/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/comment/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/community/community.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/community.dart -------------------------------------------------------------------------------- /lib/src/features/community/data/datasources/anonymous_subscriptions_local.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/data/datasources/anonymous_subscriptions_local.dart -------------------------------------------------------------------------------- /lib/src/features/community/data/datasources/anonymous_subscriptions_local_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/data/datasources/anonymous_subscriptions_local_data_source.dart -------------------------------------------------------------------------------- /lib/src/features/community/data/datasources/favorite_local_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/data/datasources/favorite_local_data_source.dart -------------------------------------------------------------------------------- /lib/src/features/community/data/models/thunder_community.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/data/models/thunder_community.dart -------------------------------------------------------------------------------- /lib/src/features/community/data/repositories/community_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/data/repositories/community_repository_impl.dart -------------------------------------------------------------------------------- /lib/src/features/community/domain/enums/community_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/domain/enums/community_action.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/bloc/anonymous_subscriptions_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/bloc/anonymous_subscriptions_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/bloc/anonymous_subscriptions_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/bloc/anonymous_subscriptions_event.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/bloc/anonymous_subscriptions_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/bloc/anonymous_subscriptions_state.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/community_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/community_drawer.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/community_header/community_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/community_header/community_header.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/community_header/community_header_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/community_header/community_header_actions.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/community_information.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/community_information.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/community_list_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/community_list_entry.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/post_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/post_card.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/post_card_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/post_card_actions.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/post_card_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/post_card_metadata.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/post_card_view_comfortable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/post_card_view_comfortable.dart -------------------------------------------------------------------------------- /lib/src/features/community/presentation/widgets/post_card_view_compact.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/community/presentation/widgets/post_card_view_compact.dart -------------------------------------------------------------------------------- /lib/src/features/drafts/data/models/draft.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/drafts/data/models/draft.dart -------------------------------------------------------------------------------- /lib/src/features/drafts/domain/enums/draft_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/drafts/domain/enums/draft_type.dart -------------------------------------------------------------------------------- /lib/src/features/drafts/drafts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/drafts/drafts.dart -------------------------------------------------------------------------------- /lib/src/features/feed/domain/enums/enums.dart: -------------------------------------------------------------------------------- 1 | export 'feed_type_subview.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/feed/domain/enums/feed_type_subview.dart: -------------------------------------------------------------------------------- 1 | enum FeedTypeSubview { post, comment } 2 | -------------------------------------------------------------------------------- /lib/src/features/feed/feed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/feed.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/bloc/feed_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/bloc/feed_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/bloc/feed_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/bloc/feed_event.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/bloc/feed_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/bloc/feed_state.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/pages/feed_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/pages/feed_page.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/pages/pages.dart: -------------------------------------------------------------------------------- 1 | export 'feed_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/utils/community.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/utils/community.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/utils/community_share.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/utils/community_share.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/utils/post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/utils/post.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/utils/user_share.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/utils/user_share.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/utils/utils.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/widgets/feed_card_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/widgets/feed_card_divider.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/widgets/feed_comment_card_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/widgets/feed_comment_card_list.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/widgets/feed_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/widgets/feed_fab.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/widgets/feed_page_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/widgets/feed_page_app_bar.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/widgets/feed_post_card_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/widgets/feed_post_card_list.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/widgets/tagline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/widgets/tagline.dart -------------------------------------------------------------------------------- /lib/src/features/feed/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/feed/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/domain/enums/inbox_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/domain/enums/inbox_type.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/inbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/inbox.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/presentation/bloc/inbox_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/presentation/bloc/inbox_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/presentation/bloc/inbox_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/presentation/bloc/inbox_event.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/presentation/bloc/inbox_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/presentation/bloc/inbox_state.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/presentation/pages/inbox_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/presentation/pages/inbox_page.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/presentation/widgets/inbox_mentions_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/presentation/widgets/inbox_mentions_view.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/presentation/widgets/inbox_private_messages_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/presentation/widgets/inbox_private_messages_view.dart -------------------------------------------------------------------------------- /lib/src/features/inbox/presentation/widgets/inbox_replies_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/inbox/presentation/widgets/inbox_replies_view.dart -------------------------------------------------------------------------------- /lib/src/features/instance/data/repositories/instance_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/data/repositories/instance_repository.dart -------------------------------------------------------------------------------- /lib/src/features/instance/domain/enums/instance_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/domain/enums/instance_action.dart -------------------------------------------------------------------------------- /lib/src/features/instance/instance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/instance.dart -------------------------------------------------------------------------------- /lib/src/features/instance/presentation/bloc/instance_page_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/presentation/bloc/instance_page_cubit.dart -------------------------------------------------------------------------------- /lib/src/features/instance/presentation/bloc/instance_page_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/presentation/bloc/instance_page_state.dart -------------------------------------------------------------------------------- /lib/src/features/instance/presentation/pages/instance_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/presentation/pages/instance_page.dart -------------------------------------------------------------------------------- /lib/src/features/instance/presentation/widgets/instance_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/presentation/widgets/instance_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/instance/presentation/widgets/instance_list_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/presentation/widgets/instance_list_entry.dart -------------------------------------------------------------------------------- /lib/src/features/instance/presentation/widgets/instance_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/instance/presentation/widgets/instance_view.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/domain/enums/report_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/domain/enums/report_action.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/moderator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/moderator.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/presentation/bloc/report_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/presentation/bloc/report_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/presentation/bloc/report_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/presentation/bloc/report_event.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/presentation/bloc/report_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/presentation/bloc/report_state.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/presentation/pages/report_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/presentation/pages/report_page.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/presentation/utils/report.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/presentation/utils/report.dart -------------------------------------------------------------------------------- /lib/src/features/moderator/presentation/widgets/report_page_filter_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/moderator/presentation/widgets/report_page_filter_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/data/models/models.dart: -------------------------------------------------------------------------------- 1 | export 'modlog_event_item.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/modlog/data/models/modlog_event_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/data/models/modlog_event_item.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/data/repositories/modlog_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/data/repositories/modlog_repository.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/domain/enums/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/domain/enums/enums.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/domain/enums/modlog_action_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/domain/enums/modlog_action_type.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/domain/enums/modlog_action_type_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/domain/enums/modlog_action_type_category.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/modlog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/modlog.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/bloc/modlog_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/bloc/modlog_cubit.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/bloc/modlog_cubit.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/bloc/modlog_cubit.freezed.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/bloc/modlog_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/bloc/modlog_state.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/pages/modlog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/pages/modlog_page.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/pages/pages.dart: -------------------------------------------------------------------------------- 1 | export 'modlog_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/widgets/modlog_feed_page_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/widgets/modlog_feed_page_app_bar.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/widgets/modlog_filter_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/widgets/modlog_filter_picker.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/widgets/modlog_item_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/widgets/modlog_item_card.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/widgets/modlog_item_context_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/widgets/modlog_item_context_card.dart -------------------------------------------------------------------------------- /lib/src/features/modlog/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/modlog/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/notification/data/repositories/notification_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/data/repositories/notification_repository.dart -------------------------------------------------------------------------------- /lib/src/features/notification/domain/enums/notification_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/domain/enums/notification_type.dart -------------------------------------------------------------------------------- /lib/src/features/notification/notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/notification.dart -------------------------------------------------------------------------------- /lib/src/features/notification/notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/notifications.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/android_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/android_notification.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/apns.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/apns.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/local_notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/local_notifications.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/notification_payload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/notification_payload.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/notification_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/notification_server.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/notification_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/notification_settings.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/notification_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/notification_utils.dart -------------------------------------------------------------------------------- /lib/src/features/notification/presentation/utils/unified_push.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/notification/presentation/utils/unified_push.dart -------------------------------------------------------------------------------- /lib/src/features/post/data/models/thunder_post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/data/models/thunder_post.dart -------------------------------------------------------------------------------- /lib/src/features/post/data/repositories/post_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/data/repositories/post_repository.dart -------------------------------------------------------------------------------- /lib/src/features/post/domain/enums/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/domain/enums/enums.dart -------------------------------------------------------------------------------- /lib/src/features/post/domain/enums/post_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/domain/enums/post_action.dart -------------------------------------------------------------------------------- /lib/src/features/post/domain/enums/post_card_metadata_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/domain/enums/post_card_metadata_item.dart -------------------------------------------------------------------------------- /lib/src/features/post/domain/enums/post_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/domain/enums/post_status.dart -------------------------------------------------------------------------------- /lib/src/features/post/post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/post.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/bloc/post_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/bloc/post_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/bloc/post_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/bloc/post_event.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/bloc/post_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/bloc/post_state.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/cubit/create_post_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/cubit/create_post_cubit.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/cubit/create_post_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/cubit/create_post_state.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/pages/create_post_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/pages/create_post_page.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/pages/pages.dart: -------------------------------------------------------------------------------- 1 | export 'post_page.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/post/presentation/pages/post_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/pages/post_page.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/utils/post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/utils/post.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/utils/user_label_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/utils/user_label_utils.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/utils/utils.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_body/post_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_body/post_body.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_body/post_body_action_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_body/post_body_action_bar.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_body/post_body_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_body/post_body_metadata.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_body/post_body_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_body/post_body_preview.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_body/post_body_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_body/post_body_title.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_bottom_sheet/community_post_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_bottom_sheet/community_post_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_bottom_sheet/general_post_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_bottom_sheet/general_post_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_bottom_sheet/post_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_bottom_sheet/post_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_bottom_sheet/post_post_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_bottom_sheet/post_post_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_card_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_card_title.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_page_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_page_app_bar.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_page_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_page_fab.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/post_status_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/post_status_icon.dart -------------------------------------------------------------------------------- /lib/src/features/post/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/post/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/search/data/repositories/search_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/search/data/repositories/search_repository.dart -------------------------------------------------------------------------------- /lib/src/features/search/presentation/bloc/search_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/search/presentation/bloc/search_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/search/presentation/bloc/search_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/search/presentation/bloc/search_event.dart -------------------------------------------------------------------------------- /lib/src/features/search/presentation/bloc/search_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/search/presentation/bloc/search_state.dart -------------------------------------------------------------------------------- /lib/src/features/search/presentation/pages/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/search/presentation/pages/search_page.dart -------------------------------------------------------------------------------- /lib/src/features/search/presentation/utils/search_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/search/presentation/utils/search_utils.dart -------------------------------------------------------------------------------- /lib/src/features/search/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/search/search.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/about_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/about_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/accessibility_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/accessibility_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/appearance_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/appearance_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/comment_appearance_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/comment_appearance_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/debug_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/debug_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/fab_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/fab_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/filter_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/filter_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/general_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/general_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/gesture_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/gesture_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/pages.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/post_appearance_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/post_appearance_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/theme_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/theme_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/user_labels_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/user_labels_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/pages/video_player_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/pages/video_player_settings.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/utils/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/utils/settings.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/utils/utils.dart: -------------------------------------------------------------------------------- 1 | export 'settings.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/accessibility_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/accessibility_profile.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/action_color_setting_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/action_color_setting_widget.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/discussion_language_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/discussion_language_selector.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/expandable_option.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/expandable_option.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/list_option.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/list_option.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/post_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/post_placeholder.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/settings_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/settings_list_tile.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/swipe_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/swipe_picker.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/toggle_option.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/toggle_option.dart -------------------------------------------------------------------------------- /lib/src/features/settings/presentation/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/presentation/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/src/features/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/settings/settings.dart -------------------------------------------------------------------------------- /lib/src/features/user/data/models/thunder_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/data/models/thunder_user.dart -------------------------------------------------------------------------------- /lib/src/features/user/data/models/user_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/data/models/user_label.dart -------------------------------------------------------------------------------- /lib/src/features/user/data/repositories/user_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/data/repositories/user_repository.dart -------------------------------------------------------------------------------- /lib/src/features/user/domain/enums/user_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/domain/enums/user_action.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/bloc/user_settings_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/bloc/user_settings_bloc.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/bloc/user_settings_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/bloc/user_settings_event.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/bloc/user_settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/bloc/user_settings_state.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/pages/media_management_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/pages/media_management_page.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/pages/user_settings_block_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/pages/user_settings_block_page.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/pages/user_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/pages/user_settings_page.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/utils/logout_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/utils/logout_dialog.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/utils/restore_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/utils/restore_user.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/utils/user_groups.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/utils/user_groups.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_header/user_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_header/user_header.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_header/user_header_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_header/user_header_actions.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_indicator.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_information.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_information.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_label_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_label_chip.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_list_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_list_entry.dart -------------------------------------------------------------------------------- /lib/src/features/user/presentation/widgets/user_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/presentation/widgets/user_selector.dart -------------------------------------------------------------------------------- /lib/src/features/user/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/features/user/user.dart -------------------------------------------------------------------------------- /lib/src/shared/bottom_sheet_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/bottom_sheet_action.dart -------------------------------------------------------------------------------- /lib/src/shared/comment_reference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/comment_reference.dart -------------------------------------------------------------------------------- /lib/src/shared/comment_sort_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/comment_sort_picker.dart -------------------------------------------------------------------------------- /lib/src/shared/conditional_parent_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/conditional_parent_widget.dart -------------------------------------------------------------------------------- /lib/src/shared/cross_posts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/cross_posts.dart -------------------------------------------------------------------------------- /lib/src/shared/dialogs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/dialogs.dart -------------------------------------------------------------------------------- /lib/src/shared/divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/divider.dart -------------------------------------------------------------------------------- /lib/src/shared/error_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/error_message.dart -------------------------------------------------------------------------------- /lib/src/shared/full_name_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/full_name_widgets.dart -------------------------------------------------------------------------------- /lib/src/shared/gesture_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/gesture_fab.dart -------------------------------------------------------------------------------- /lib/src/shared/icon_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/icon_text.dart -------------------------------------------------------------------------------- /lib/src/shared/image_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/image_preview.dart -------------------------------------------------------------------------------- /lib/src/shared/images/image_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/images/image_preview.dart -------------------------------------------------------------------------------- /lib/src/shared/images/image_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/images/image_viewer.dart -------------------------------------------------------------------------------- /lib/src/shared/input_dialogs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/input_dialogs.dart -------------------------------------------------------------------------------- /lib/src/shared/language_selector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/language_selector.dart -------------------------------------------------------------------------------- /lib/src/shared/link_information.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/link_information.dart -------------------------------------------------------------------------------- /lib/src/shared/markdown/common_markdown_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/markdown/common_markdown_body.dart -------------------------------------------------------------------------------- /lib/src/shared/markdown/extended_markdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/markdown/extended_markdown.dart -------------------------------------------------------------------------------- /lib/src/shared/markdown/markdown_lemmy_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/markdown/markdown_lemmy_link.dart -------------------------------------------------------------------------------- /lib/src/shared/markdown/markdown_spoiler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/markdown/markdown_spoiler.dart -------------------------------------------------------------------------------- /lib/src/shared/markdown/markdown_subsuperscript.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/markdown/markdown_subsuperscript.dart -------------------------------------------------------------------------------- /lib/src/shared/markdown/markdown_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/markdown/markdown_utils.dart -------------------------------------------------------------------------------- /lib/src/shared/marquee_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/marquee_widget.dart -------------------------------------------------------------------------------- /lib/src/shared/multi_picker_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/multi_picker_item.dart -------------------------------------------------------------------------------- /lib/src/shared/pages/loading_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/pages/loading_page.dart -------------------------------------------------------------------------------- /lib/src/shared/persistent_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/persistent_header.dart -------------------------------------------------------------------------------- /lib/src/shared/picker_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/picker_item.dart -------------------------------------------------------------------------------- /lib/src/shared/profile_site_info_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/profile_site_info_cache.dart -------------------------------------------------------------------------------- /lib/src/shared/reply_to_preview_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/reply_to_preview_actions.dart -------------------------------------------------------------------------------- /lib/src/shared/share/advanced_share_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/share/advanced_share_sheet.dart -------------------------------------------------------------------------------- /lib/src/shared/share/share_action_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/share/share_action_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/src/shared/snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/snackbar.dart -------------------------------------------------------------------------------- /lib/src/shared/sort_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/sort_picker.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/bottom_sheet_list_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/bottom_sheet_list_picker.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/cache.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/colors.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/constants.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/date_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/date_time.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/debounce.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/debounce.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/error_messages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/error_messages.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/instance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/instance.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/language/language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/language/language.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/links.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/links.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/media/image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/media/image.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/media/video.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/media/video.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/numbers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/numbers.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/preferences.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/swipe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/swipe.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/text_input_formatter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/text_input_formatter.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/video_player/src/thunder_video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/video_player/src/thunder_video_player.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/video_player/src/thunder_youtube_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/video_player/src/thunder_youtube_player.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/video_player/video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/video_player/video_player.dart -------------------------------------------------------------------------------- /lib/src/shared/utils/web_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/utils/web_utils.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/avatars/community_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/avatars/community_avatar.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/avatars/instance_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/avatars/instance_avatar.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/avatars/user_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/avatars/user_avatar.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/chips/community_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/chips/community_chip.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/chips/thunder_action_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/chips/thunder_action_chip.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/chips/user_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/chips/user_chip.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/comment_navigator_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/comment_navigator_fab.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/media/compact_thumbnail_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/media/compact_thumbnail_preview.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/media/media_type_badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/media/media_type_badge.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/media/media_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/media/media_view.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/media/media_view_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/media/media_view_text.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/multi_action_dismissible.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/multi_action_dismissible.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/text/scalable_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/text/scalable_text.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/text/selectable_text_modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/text/selectable_text_modal.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/thunder_popup_menu_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/thunder_popup_menu_item.dart -------------------------------------------------------------------------------- /lib/src/shared/widgets/webview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/lib/src/shared/widgets/webview.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /scripts/build-android.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/scripts/build-android.dart -------------------------------------------------------------------------------- /scripts/build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/scripts/build.dart -------------------------------------------------------------------------------- /scripts/docker-build-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/scripts/docker-build-android.sh -------------------------------------------------------------------------------- /scripts/docker-build-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/scripts/docker-build-web.sh -------------------------------------------------------------------------------- /scripts/docker-dev-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/scripts/docker-dev-android.sh -------------------------------------------------------------------------------- /scripts/docker-run-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/scripts/docker-run-web.sh -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema.dart -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema_v1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema_v1.dart -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema_v2.dart -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema_v3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema_v3.dart -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema_v4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema_v4.dart -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema_v5.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema_v5.dart -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema_v6.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema_v6.dart -------------------------------------------------------------------------------- /test/drift/thunder/generated/schema_v7.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/generated/schema_v7.dart -------------------------------------------------------------------------------- /test/drift/thunder/migration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/drift/thunder/migration_test.dart -------------------------------------------------------------------------------- /test/features/comment/comment_node_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/features/comment/comment_node_test.dart -------------------------------------------------------------------------------- /test/thunder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/thunder_test.dart -------------------------------------------------------------------------------- /test/utils/user_groups_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/utils/user_groups_test.dart -------------------------------------------------------------------------------- /test/widgets/base_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/test/widgets/base_widget.dart -------------------------------------------------------------------------------- /thunder.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/thunder.iml -------------------------------------------------------------------------------- /web/drift_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/drift_worker.js -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/manifest.json -------------------------------------------------------------------------------- /web/splash/img/dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/dark-1x.png -------------------------------------------------------------------------------- /web/splash/img/dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/dark-2x.png -------------------------------------------------------------------------------- /web/splash/img/dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/dark-3x.png -------------------------------------------------------------------------------- /web/splash/img/dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/dark-4x.png -------------------------------------------------------------------------------- /web/splash/img/light-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/light-1x.png -------------------------------------------------------------------------------- /web/splash/img/light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/light-2x.png -------------------------------------------------------------------------------- /web/splash/img/light-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/light-3x.png -------------------------------------------------------------------------------- /web/splash/img/light-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/splash/img/light-4x.png -------------------------------------------------------------------------------- /web/sqlite3.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunder-app/thunder/HEAD/web/sqlite3.wasm --------------------------------------------------------------------------------