Skip to content

Instantly share code, notes, and snippets.

@TheAlphamerc
Created October 20, 2020 10:45
Show Gist options
  • Save TheAlphamerc/af17d2f2b7ca17e628601b99996f47c4 to your computer and use it in GitHub Desktop.
Save TheAlphamerc/af17d2f2b7ca17e628601b99996f47c4 to your computer and use it in GitHub Desktop.
Click to expand
|      
|-- lib
|   |-- app_delegate.dart
|   |-- bloc
|   |   |-- User
|   |   |   |-- User_bloc.dart
|   |   |   |-- User_event.dart
|   |   |   |-- User_model.dart
|   |   |   |-- User_state.dart
|   |   |   |-- index.dart
|   |   |   '-- model
|   |   |       |-- event_model.dart
|   |   |       '-- gist_model.dart
|   |   |-- auth
|   |   |   |-- auth_bloc.dart
|   |   |   |-- auth_event.dart
|   |   |   |-- auth_state.dart
|   |   |   '-- index.dart
|   |   |-- bloc
|   |   |   |-- repo_bloc.dart
|   |   |   |-- repo_event.dart
|   |   |   |-- repo_response_model.dart
|   |   |   '-- repo_state.dart
|   |   |-- gist
|   |   |   |-- gist_bloc.dart
|   |   |   |-- gist_event.dart
|   |   |   '-- gist_state.dart
|   |   |-- issues
|   |   |   |-- index.dart
|   |   |   |-- issues_bloc.dart
|   |   |   |-- issues_event.dart
|   |   |   |-- issues_model.dart
|   |   |   '-- issues_state.dart
|   |   |-- navigation
|   |   |   |-- index.dart
|   |   |   |-- navigation_bloc.dart
|   |   |   |-- navigation_event.dart
|   |   |   '-- navigation_state.dart
|   |   |-- notification
|   |   |   |-- index.dart
|   |   |   |-- notification_bloc.dart
|   |   |   |-- notification_event.dart
|   |   |   |-- notification_model.dart
|   |   |   '-- notification_state.dart
|   |   |-- people
|   |   |   |-- index.dart
|   |   |   |-- people_bloc.dart
|   |   |   |-- people_event.dart
|   |   |   |-- people_model.dart
|   |   |   '-- people_state.dart
|   |   |-- pullrequest
|   |   |   |-- index.dart
|   |   |   |-- pullrequest_bloc.dart
|   |   |   |-- pullrequest_event.dart
|   |   |   '-- pullrequest_state.dart
|   |   '-- search
|   |       |-- index.dart
|   |       |-- model
|   |       |   '-- search_userModel.dart
|   |       |-- repo_model.dart
|   |       |-- search_bloc.dart
|   |       |-- search_event.dart
|   |       '-- search_state.dart
|   |-- exceptions
|   |   '-- exceptions.dart
|   |-- helper
|   |   |-- GIcons.dart
|   |   |-- config.dart
|   |   |-- git_config.dart.template
|   |   |-- shared_prefrence_helper.dart
|   |   '-- utility.dart
|   |-- locator.dart
|   |-- main.dart
|   |-- model
|   |   |-- forks_model.dart
|   |   |-- page_info_model.dart
|   |   '-- pul_request.dart
|   |-- resources
|   |   |-- dio_client.dart
|   |   |-- gatway
|   |   |   |-- api_gatway.dart
|   |   |   '-- api_gatway_impl.dart
|   |   |-- grapgqlApi
|   |   |   |-- gist_api.dart
|   |   |   |-- graphql_query_api.dart
|   |   |   |-- issues_api.dart
|   |   |   |-- people_api.dart
|   |   |   |-- pull_request_api.dart
|   |   |   '-- repo_api.dart
|   |   |-- graphql_client.dart
|   |   |-- repository
|   |   |   |-- User_repository.dart
|   |   |   |-- auth_repository.dart
|   |   |   |-- gist_repository.dart
|   |   |   |-- issues_repository.dart
|   |   |   |-- notification_repository.dart
|   |   |   |-- people_repository.dart
|   |   |   |-- pullrequest_repository.dart
|   |   |   '-- repo_repository.dart
|   |   '-- service
|   |       |-- auth_service.dart
|   |       |-- impl
|   |       |   |-- auth_service_impl.dart
|   |       |   '-- session_service_impl.dart
|   |       '-- session_service.dart
|   '-- ui
|       |-- page
|       |   |-- app.dart
|       |   |-- auth
|       |   |   |-- auth_page.dart
|       |   |   |-- repo
|       |   |   |   '-- repo_list_screen.dart
|       |   |   '-- web_view.dart
|       |   |-- common
|       |   |   |-- dashboard_page.dart
|       |   |   |-- no_data_page.dart
|       |   |   '-- under_development.dart
|       |   | (8 more...)
|       |   |-- splash.dart
|       |   |-- user
|       |   |   |-- User_page.dart
|       |   |   |-- User_screen.dart
|       |   |   |-- gist
|       |   |   |   |-- gist_detail.dart
|       |   |   |   |   |-- gist_detail_page.dart
|       |   |   |   |   |-- gist_detail_scree.dart
|       |   |   |   |   '-- gist_file_content.dart
|       |   |   |   |-- gist_list_page.dart
|       |   |   |   '-- gist_list_screen.dart
|       |   |   '-- widget
|       |   |       '-- git_contribution_graph.dart
|       |   '-- welcome_page.dart
|       |-- theme
|       |   |-- app_theme_provider.dart
|       |   |-- color
|       |   |   '-- dark_color.dart
|       |   |-- colors.dart
|       |   |-- custom_theme.dart
|       |   |-- export_theme.dart
|       |   |-- extentions.dart
|       |   |-- images.dart
|       |   |-- texttheme
|       |   |   '-- text_theme.dart
|       |   '-- theme.dart
|       '-- widgets
|           |-- bottom_navigation_bar.dart
|           |-- cached_image.dart
|           |-- flat_button.dart
|           | (5 more...)
|           |-- g_user_tile.dart
|           |-- markdown
|           |   |-- markdown_viewer.dart
|           |   '-- syntax_highlight.dart
|           '-- user_image.dart
|-- pubspec.yaml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment