├── .github └── FUNDING.yml ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── thealphamerc │ │ │ │ └── flutter_commun_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── font │ ├── SourceSansPro-Black.ttf │ ├── SourceSansPro-BlackItalic.ttf │ ├── SourceSansPro-Bold.ttf │ ├── SourceSansPro-BoldItalic.ttf │ ├── SourceSansPro-ExtraLight.ttf │ ├── SourceSansPro-ExtraLightItalic.ttf │ ├── SourceSansPro-Italic.ttf │ ├── SourceSansPro-Light.ttf │ ├── SourceSansPro-LightItalic.ttf │ ├── SourceSansPro-Regular.ttf │ ├── SourceSansPro-SemiBold.ttf │ └── SourceSansPro-SemiBoldItalic.ttf ├── icon │ ├── signup │ │ ├── apple_logo.png │ │ ├── email_icon.png │ │ ├── facebook_logo.png │ │ ├── google_logo.png │ │ ├── instagram_logo.png │ │ ├── phone_icon.png │ │ └── twitter_logo.png │ └── social │ │ ├── circle_facebook_icon.png │ │ ├── circle_github_icon.png │ │ ├── circle_instagram_icon.png │ │ ├── circle_linkedin_icon.png │ │ ├── circle_other_link.png │ │ ├── circle_twitter_icon.png │ │ └── circle_youtube_icon.png └── image │ └── onboard │ ├── default_profile_img.png │ ├── img_welcome_four.png │ ├── img_welcome_one.png │ └── img_welcome_two.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── l10n.yaml ├── lib ├── cubit │ ├── app │ │ ├── app_cubit.dart │ │ ├── app_state.dart │ │ ├── bottom_menu │ │ │ ├── bottom_main_menu_cubit.dart │ │ │ └── bottom_main_menu_state.dart │ │ └── e_app_state.dart │ ├── app_start │ │ ├── Signin │ │ │ ├── email │ │ │ │ ├── signin_email_cubit.dart │ │ │ │ └── signin_email_state.dart │ │ │ ├── signin_cubit.dart │ │ │ └── signin_state.dart │ │ ├── onboard │ │ │ ├── e_onboard_profile_state.dart │ │ │ ├── onboard_profile_cubit.dart │ │ │ └── onboard_profile_state.dart │ │ ├── signup │ │ │ ├── email │ │ │ │ ├── signup_email_cubit.dart │ │ │ │ └── signup_email_state.dart │ │ │ ├── mobile │ │ │ │ ├── signup_mobile_cubit.dart │ │ │ │ └── signup_mobile_state.dart │ │ │ └── social │ │ │ │ ├── social_signup_cubit.dart │ │ │ │ └── social_signup_state.dart │ │ └── username │ │ │ ├── e_username_state.dart │ │ │ ├── username_cubit.dart │ │ │ └── username_state.dart │ ├── community │ │ ├── create │ │ │ ├── create_community_cubit.dart │ │ │ ├── create_community_state.dart │ │ │ └── e_create_community_state.dart │ │ ├── feed │ │ │ ├── community_feed_cubit.dart │ │ │ ├── community_feed_state.dart │ │ │ └── e_community_feed_state.dart │ │ └── profile │ │ │ ├── community_profile_cubit.dart │ │ │ ├── community_profile_state.dart │ │ │ └── e_community_profile_state.dart │ ├── home │ │ └── feed │ │ │ ├── e_post_feed_state.dart │ │ │ ├── post_feed_cubit.dart │ │ │ └── post_feed_state.dart │ └── post │ │ ├── base │ │ └── post_base_actions.dart │ │ ├── create │ │ ├── create_post_cubit.dart │ │ └── create_post_state.dart │ │ └── detail │ │ ├── e_post_detail_state.dart │ │ ├── post_detail_cubit.dart │ │ └── post_detail_state.dart ├── helper │ ├── constant │ │ ├── collections_constants.dart │ │ ├── constant.dart │ │ └── images.dart │ ├── index.dart │ ├── route │ │ ├── fade_route.dart │ │ └── slide_left_route.dart │ └── utility │ │ ├── file_utility.dart │ │ ├── type_extention.dart │ │ └── utility.dart ├── l10n │ ├── app_en.arb │ └── app_es.arb ├── locator.dart ├── main.dart ├── model │ ├── community │ │ ├── community_model.dart │ │ ├── cover_image_model.dart │ │ ├── e_social_link_type.dart │ │ ├── e_user_role.dart │ │ └── social_link_model.dart │ ├── page │ │ └── page_info.dart │ ├── post │ │ ├── action │ │ │ └── e_post_action.dart │ │ ├── e_attachment_type.dart │ │ ├── e_post_type.dart │ │ └── post_model.dart │ └── profile │ │ ├── e_profile_provider_id.dart │ │ └── profile_model.dart ├── resource │ ├── repository │ │ ├── auth │ │ │ ├── auth_repo.dart │ │ │ └── auth_repo_impl.dart │ │ ├── community │ │ │ ├── community_feed_repo.dart │ │ │ └── community_feed_repo_impl.dart │ │ ├── post │ │ │ ├── post_repo.dart │ │ │ └── post_repo_impl.dart │ │ └── profile │ │ │ ├── profile_repo.dart │ │ │ └── profile_repo_impl.dart │ ├── service │ │ ├── auth │ │ │ ├── firebase_auth_service.dart │ │ │ └── verify_phone_response.dart │ │ ├── community │ │ │ └── firebase_community_service.dart │ │ ├── feed │ │ │ └── firebase_post_service.dart │ │ ├── navigation │ │ │ └── navigation_service.dart │ │ ├── profile │ │ │ └── firebase_profile_service.dart │ │ └── storage │ │ │ ├── file_upload_task_response.dart │ │ │ └── firebase_storage_service.dart │ └── session │ │ ├── session.dart │ │ └── session_impl.dart └── ui │ ├── app │ └── commun_app.dart │ ├── pages │ ├── app_start │ │ ├── onboard │ │ │ └── onboard_user_profile.dart │ │ ├── sign_in │ │ │ ├── continue_with_page.dart │ │ │ ├── signin_with_email_page.dart │ │ │ └── signin_with_mobile_page.dart │ │ ├── sign_up │ │ │ ├── create_username_page.dart │ │ │ ├── otp_verification_page.dart │ │ │ ├── sign_up_with_page.dart │ │ │ ├── signup_with_email_page.dart │ │ │ ├── signup_with_mobile_page.dart │ │ │ └── widget │ │ │ │ ├── already_have_account_widget.dart │ │ │ │ ├── dont_have_account_widget.dart │ │ │ │ └── signup_terms_of_service_widget.dart │ │ ├── splash.dart │ │ ├── welcome │ │ │ └── onboard_page.dart │ │ └── widget │ │ │ └── auth_button.dart │ ├── community │ │ ├── community_feed.dart │ │ ├── create │ │ │ ├── add_social_link_sheet.dart │ │ │ ├── create_community.dart │ │ │ ├── select_community_topic.dart │ │ │ └── widget │ │ │ │ ├── nav_slider_panel.dart │ │ │ │ └── next_buton.dart │ │ ├── detail │ │ │ └── community_profile_page.dart │ │ └── widget │ │ │ ├── community_feed_app_bar.dart │ │ │ └── community_tile.dart │ ├── home │ │ ├── feed │ │ │ └── feed_page.dart │ │ ├── home_page.dart │ │ ├── post │ │ │ ├── comment │ │ │ │ ├── comment.dart │ │ │ │ └── comment_bottom_control.dart │ │ │ ├── detail │ │ │ │ ├── post_detail_page.dart │ │ │ │ └── widget │ │ │ │ │ └── comment_entry_field.dart │ │ │ ├── post.dart │ │ │ └── widget │ │ │ │ ├── post_bottom_control.dart │ │ │ │ ├── post_header.dart │ │ │ │ └── post_image.dart │ │ └── widget │ │ │ ├── bottom_navigation_menu.dart │ │ │ ├── feed_app_bar.dart │ │ │ └── whats_new_widget.dart │ └── post │ │ ├── create_post_bottom_menu.dart │ │ ├── create_post_page.dart │ │ └── widget │ │ └── create_post_images.dart │ ├── theme │ ├── color │ │ └── light_colors.dart │ ├── decoration │ │ └── box_decorations.dart │ ├── index.dart │ ├── text_styles.dart │ ├── theme.dart │ └── theme_extention.dart │ └── widget │ ├── circular_image.dart │ ├── form │ ├── k_textfield.dart │ ├── k_textfield2.dart │ └── validator.dart │ ├── image_viewer.dart │ ├── k_button.dart │ ├── kit │ ├── alert.dart │ ├── custom_bottom_sheet.dart │ └── overlay_loader.dart │ ├── lazy_load_scrollview.dart │ ├── page_indicator.dart │ ├── painter │ └── circle_border_painter.dart │ └── tile_action_widget.dart ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png └── Icon-512.png ├── index.html └── manifest.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/thealphamerc/flutter_commun_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/kotlin/com/thealphamerc/flutter_commun_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/font/SourceSansPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-Black.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-Italic.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-LightItalic.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-SemiBold.ttf -------------------------------------------------------------------------------- /assets/font/SourceSansPro-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/font/SourceSansPro-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/icon/signup/apple_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/signup/apple_logo.png -------------------------------------------------------------------------------- /assets/icon/signup/email_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/signup/email_icon.png -------------------------------------------------------------------------------- /assets/icon/signup/facebook_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/signup/facebook_logo.png -------------------------------------------------------------------------------- /assets/icon/signup/google_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/signup/google_logo.png -------------------------------------------------------------------------------- /assets/icon/signup/instagram_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/signup/instagram_logo.png -------------------------------------------------------------------------------- /assets/icon/signup/phone_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/signup/phone_icon.png -------------------------------------------------------------------------------- /assets/icon/signup/twitter_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/signup/twitter_logo.png -------------------------------------------------------------------------------- /assets/icon/social/circle_facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/social/circle_facebook_icon.png -------------------------------------------------------------------------------- /assets/icon/social/circle_github_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/social/circle_github_icon.png -------------------------------------------------------------------------------- /assets/icon/social/circle_instagram_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/social/circle_instagram_icon.png -------------------------------------------------------------------------------- /assets/icon/social/circle_linkedin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/social/circle_linkedin_icon.png -------------------------------------------------------------------------------- /assets/icon/social/circle_other_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/social/circle_other_link.png -------------------------------------------------------------------------------- /assets/icon/social/circle_twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/social/circle_twitter_icon.png -------------------------------------------------------------------------------- /assets/icon/social/circle_youtube_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/icon/social/circle_youtube_icon.png -------------------------------------------------------------------------------- /assets/image/onboard/default_profile_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/image/onboard/default_profile_img.png -------------------------------------------------------------------------------- /assets/image/onboard/img_welcome_four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/image/onboard/img_welcome_four.png -------------------------------------------------------------------------------- /assets/image/onboard/img_welcome_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/image/onboard/img_welcome_one.png -------------------------------------------------------------------------------- /assets/image/onboard/img_welcome_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/assets/image/onboard/img_welcome_two.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/cubit/app/app_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app/app_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app/app_state.dart -------------------------------------------------------------------------------- /lib/cubit/app/bottom_menu/bottom_main_menu_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app/bottom_menu/bottom_main_menu_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app/bottom_menu/bottom_main_menu_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app/bottom_menu/bottom_main_menu_state.dart -------------------------------------------------------------------------------- /lib/cubit/app/e_app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app/e_app_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/Signin/email/signin_email_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/Signin/email/signin_email_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/Signin/email/signin_email_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/Signin/email/signin_email_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/Signin/signin_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/Signin/signin_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/Signin/signin_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/Signin/signin_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/onboard/e_onboard_profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/onboard/e_onboard_profile_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/onboard/onboard_profile_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/onboard/onboard_profile_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/onboard/onboard_profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/onboard/onboard_profile_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/signup/email/signup_email_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/signup/email/signup_email_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/signup/email/signup_email_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/signup/email/signup_email_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/signup/mobile/signup_mobile_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/signup/mobile/signup_mobile_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/signup/mobile/signup_mobile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/signup/mobile/signup_mobile_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/signup/social/social_signup_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/signup/social/social_signup_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/signup/social/social_signup_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/signup/social/social_signup_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/username/e_username_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/username/e_username_state.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/username/username_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/username/username_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/app_start/username/username_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/app_start/username/username_state.dart -------------------------------------------------------------------------------- /lib/cubit/community/create/create_community_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/create/create_community_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/community/create/create_community_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/create/create_community_state.dart -------------------------------------------------------------------------------- /lib/cubit/community/create/e_create_community_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/create/e_create_community_state.dart -------------------------------------------------------------------------------- /lib/cubit/community/feed/community_feed_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/feed/community_feed_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/community/feed/community_feed_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/feed/community_feed_state.dart -------------------------------------------------------------------------------- /lib/cubit/community/feed/e_community_feed_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/feed/e_community_feed_state.dart -------------------------------------------------------------------------------- /lib/cubit/community/profile/community_profile_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/profile/community_profile_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/community/profile/community_profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/profile/community_profile_state.dart -------------------------------------------------------------------------------- /lib/cubit/community/profile/e_community_profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/community/profile/e_community_profile_state.dart -------------------------------------------------------------------------------- /lib/cubit/home/feed/e_post_feed_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/home/feed/e_post_feed_state.dart -------------------------------------------------------------------------------- /lib/cubit/home/feed/post_feed_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/home/feed/post_feed_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/home/feed/post_feed_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/home/feed/post_feed_state.dart -------------------------------------------------------------------------------- /lib/cubit/post/base/post_base_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/post/base/post_base_actions.dart -------------------------------------------------------------------------------- /lib/cubit/post/create/create_post_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/post/create/create_post_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/post/create/create_post_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/post/create/create_post_state.dart -------------------------------------------------------------------------------- /lib/cubit/post/detail/e_post_detail_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/post/detail/e_post_detail_state.dart -------------------------------------------------------------------------------- /lib/cubit/post/detail/post_detail_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/post/detail/post_detail_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/post/detail/post_detail_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/cubit/post/detail/post_detail_state.dart -------------------------------------------------------------------------------- /lib/helper/constant/collections_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/constant/collections_constants.dart -------------------------------------------------------------------------------- /lib/helper/constant/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/constant/constant.dart -------------------------------------------------------------------------------- /lib/helper/constant/images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/constant/images.dart -------------------------------------------------------------------------------- /lib/helper/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/index.dart -------------------------------------------------------------------------------- /lib/helper/route/fade_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/route/fade_route.dart -------------------------------------------------------------------------------- /lib/helper/route/slide_left_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/route/slide_left_route.dart -------------------------------------------------------------------------------- /lib/helper/utility/file_utility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/utility/file_utility.dart -------------------------------------------------------------------------------- /lib/helper/utility/type_extention.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/utility/type_extention.dart -------------------------------------------------------------------------------- /lib/helper/utility/utility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/helper/utility/utility.dart -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /lib/locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/locator.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/community/community_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/community/community_model.dart -------------------------------------------------------------------------------- /lib/model/community/cover_image_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/community/cover_image_model.dart -------------------------------------------------------------------------------- /lib/model/community/e_social_link_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/community/e_social_link_type.dart -------------------------------------------------------------------------------- /lib/model/community/e_user_role.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/community/e_user_role.dart -------------------------------------------------------------------------------- /lib/model/community/social_link_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/community/social_link_model.dart -------------------------------------------------------------------------------- /lib/model/page/page_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/page/page_info.dart -------------------------------------------------------------------------------- /lib/model/post/action/e_post_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/post/action/e_post_action.dart -------------------------------------------------------------------------------- /lib/model/post/e_attachment_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/post/e_attachment_type.dart -------------------------------------------------------------------------------- /lib/model/post/e_post_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/post/e_post_type.dart -------------------------------------------------------------------------------- /lib/model/post/post_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/post/post_model.dart -------------------------------------------------------------------------------- /lib/model/profile/e_profile_provider_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/profile/e_profile_provider_id.dart -------------------------------------------------------------------------------- /lib/model/profile/profile_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/model/profile/profile_model.dart -------------------------------------------------------------------------------- /lib/resource/repository/auth/auth_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/auth/auth_repo.dart -------------------------------------------------------------------------------- /lib/resource/repository/auth/auth_repo_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/auth/auth_repo_impl.dart -------------------------------------------------------------------------------- /lib/resource/repository/community/community_feed_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/community/community_feed_repo.dart -------------------------------------------------------------------------------- /lib/resource/repository/community/community_feed_repo_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/community/community_feed_repo_impl.dart -------------------------------------------------------------------------------- /lib/resource/repository/post/post_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/post/post_repo.dart -------------------------------------------------------------------------------- /lib/resource/repository/post/post_repo_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/post/post_repo_impl.dart -------------------------------------------------------------------------------- /lib/resource/repository/profile/profile_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/profile/profile_repo.dart -------------------------------------------------------------------------------- /lib/resource/repository/profile/profile_repo_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/repository/profile/profile_repo_impl.dart -------------------------------------------------------------------------------- /lib/resource/service/auth/firebase_auth_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/auth/firebase_auth_service.dart -------------------------------------------------------------------------------- /lib/resource/service/auth/verify_phone_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/auth/verify_phone_response.dart -------------------------------------------------------------------------------- /lib/resource/service/community/firebase_community_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/community/firebase_community_service.dart -------------------------------------------------------------------------------- /lib/resource/service/feed/firebase_post_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/feed/firebase_post_service.dart -------------------------------------------------------------------------------- /lib/resource/service/navigation/navigation_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/navigation/navigation_service.dart -------------------------------------------------------------------------------- /lib/resource/service/profile/firebase_profile_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/profile/firebase_profile_service.dart -------------------------------------------------------------------------------- /lib/resource/service/storage/file_upload_task_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/storage/file_upload_task_response.dart -------------------------------------------------------------------------------- /lib/resource/service/storage/firebase_storage_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/service/storage/firebase_storage_service.dart -------------------------------------------------------------------------------- /lib/resource/session/session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/session/session.dart -------------------------------------------------------------------------------- /lib/resource/session/session_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/resource/session/session_impl.dart -------------------------------------------------------------------------------- /lib/ui/app/commun_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/app/commun_app.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/onboard/onboard_user_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/onboard/onboard_user_profile.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_in/continue_with_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_in/continue_with_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_in/signin_with_email_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_in/signin_with_email_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_in/signin_with_mobile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_in/signin_with_mobile_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/create_username_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/create_username_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/otp_verification_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/otp_verification_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/sign_up_with_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/sign_up_with_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/signup_with_email_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/signup_with_email_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/signup_with_mobile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/signup_with_mobile_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/widget/already_have_account_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/widget/already_have_account_widget.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/widget/dont_have_account_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/widget/dont_have_account_widget.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/sign_up/widget/signup_terms_of_service_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/sign_up/widget/signup_terms_of_service_widget.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/splash.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/welcome/onboard_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/welcome/onboard_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/app_start/widget/auth_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/app_start/widget/auth_button.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/community_feed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/community_feed.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/create/add_social_link_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/create/add_social_link_sheet.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/create/create_community.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/create/create_community.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/create/select_community_topic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/create/select_community_topic.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/create/widget/nav_slider_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/create/widget/nav_slider_panel.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/create/widget/next_buton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/create/widget/next_buton.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/detail/community_profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/detail/community_profile_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/widget/community_feed_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/widget/community_feed_app_bar.dart -------------------------------------------------------------------------------- /lib/ui/pages/community/widget/community_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/community/widget/community_tile.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/feed/feed_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/feed/feed_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/home_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/comment/comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/comment/comment.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/comment/comment_bottom_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/comment/comment_bottom_control.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/detail/post_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/detail/post_detail_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/detail/widget/comment_entry_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/detail/widget/comment_entry_field.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/post.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/widget/post_bottom_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/widget/post_bottom_control.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/widget/post_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/widget/post_header.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/post/widget/post_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/post/widget/post_image.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/widget/bottom_navigation_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/widget/bottom_navigation_menu.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/widget/feed_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/widget/feed_app_bar.dart -------------------------------------------------------------------------------- /lib/ui/pages/home/widget/whats_new_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/home/widget/whats_new_widget.dart -------------------------------------------------------------------------------- /lib/ui/pages/post/create_post_bottom_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/post/create_post_bottom_menu.dart -------------------------------------------------------------------------------- /lib/ui/pages/post/create_post_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/post/create_post_page.dart -------------------------------------------------------------------------------- /lib/ui/pages/post/widget/create_post_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/pages/post/widget/create_post_images.dart -------------------------------------------------------------------------------- /lib/ui/theme/color/light_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/theme/color/light_colors.dart -------------------------------------------------------------------------------- /lib/ui/theme/decoration/box_decorations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/theme/decoration/box_decorations.dart -------------------------------------------------------------------------------- /lib/ui/theme/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/theme/index.dart -------------------------------------------------------------------------------- /lib/ui/theme/text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/theme/text_styles.dart -------------------------------------------------------------------------------- /lib/ui/theme/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/theme/theme.dart -------------------------------------------------------------------------------- /lib/ui/theme/theme_extention.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/theme/theme_extention.dart -------------------------------------------------------------------------------- /lib/ui/widget/circular_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/circular_image.dart -------------------------------------------------------------------------------- /lib/ui/widget/form/k_textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/form/k_textfield.dart -------------------------------------------------------------------------------- /lib/ui/widget/form/k_textfield2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/form/k_textfield2.dart -------------------------------------------------------------------------------- /lib/ui/widget/form/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/form/validator.dart -------------------------------------------------------------------------------- /lib/ui/widget/image_viewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/image_viewer.dart -------------------------------------------------------------------------------- /lib/ui/widget/k_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/k_button.dart -------------------------------------------------------------------------------- /lib/ui/widget/kit/alert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/kit/alert.dart -------------------------------------------------------------------------------- /lib/ui/widget/kit/custom_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/kit/custom_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/ui/widget/kit/overlay_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/kit/overlay_loader.dart -------------------------------------------------------------------------------- /lib/ui/widget/lazy_load_scrollview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/lazy_load_scrollview.dart -------------------------------------------------------------------------------- /lib/ui/widget/page_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/page_indicator.dart -------------------------------------------------------------------------------- /lib/ui/widget/painter/circle_border_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/painter/circle_border_painter.dart -------------------------------------------------------------------------------- /lib/ui/widget/tile_action_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/lib/ui/widget/tile_action_widget.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAlphamerc/flutter_commun_app/HEAD/web/manifest.json --------------------------------------------------------------------------------