├── .github └── workflows │ └── workflow1.yml ├── README.md ├── analysis_options.yaml ├── firebase.json ├── lib ├── authentication │ ├── authentication.dart │ └── authentication_service.dart ├── dto │ ├── admin_dashboard_cache_model.dart │ ├── constant.dart │ ├── issue.dart │ ├── issue_model.dart │ ├── issue_model.g.dart │ ├── pull_model.dart │ ├── pull_model.g.dart │ ├── repo_model.dart │ ├── repo_model.g.dart │ └── table_data.dart ├── main.dart ├── page │ ├── bottom_sheet.dart │ ├── drawer_widget.dart │ ├── issue_details_mobile.dart │ ├── issue_details_page.dart │ ├── issue_details_web.dart │ ├── login_page.dart │ ├── mobile_repo_details.dart │ ├── repo_details_page.dart │ ├── repo_list_element.dart │ ├── repo_page.dart │ ├── web_repo_details.dart │ └── welcome_page.dart ├── provider │ └── provider_list.dart ├── route │ └── routes.dart ├── service │ ├── basic_service.dart │ ├── dashboard_services.dart │ ├── fire_base.dart │ ├── github_service.dart │ ├── issue_service.dart │ ├── pull_request_service.dart │ └── table_data_service.dart └── view_util.dart ├── pubspec.yaml └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png ├── Icon-maskable-192.png └── Icon-maskable-512.png ├── index.html └── manifest.json /.github/workflows/workflow1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/.github/workflows/workflow1.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/firebase.json -------------------------------------------------------------------------------- /lib/authentication/authentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/authentication/authentication.dart -------------------------------------------------------------------------------- /lib/authentication/authentication_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/authentication/authentication_service.dart -------------------------------------------------------------------------------- /lib/dto/admin_dashboard_cache_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/admin_dashboard_cache_model.dart -------------------------------------------------------------------------------- /lib/dto/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/constant.dart -------------------------------------------------------------------------------- /lib/dto/issue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/issue.dart -------------------------------------------------------------------------------- /lib/dto/issue_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/issue_model.dart -------------------------------------------------------------------------------- /lib/dto/issue_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/issue_model.g.dart -------------------------------------------------------------------------------- /lib/dto/pull_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/pull_model.dart -------------------------------------------------------------------------------- /lib/dto/pull_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/pull_model.g.dart -------------------------------------------------------------------------------- /lib/dto/repo_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/repo_model.dart -------------------------------------------------------------------------------- /lib/dto/repo_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/repo_model.g.dart -------------------------------------------------------------------------------- /lib/dto/table_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/dto/table_data.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/page/bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/bottom_sheet.dart -------------------------------------------------------------------------------- /lib/page/drawer_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/drawer_widget.dart -------------------------------------------------------------------------------- /lib/page/issue_details_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/issue_details_mobile.dart -------------------------------------------------------------------------------- /lib/page/issue_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/issue_details_page.dart -------------------------------------------------------------------------------- /lib/page/issue_details_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/issue_details_web.dart -------------------------------------------------------------------------------- /lib/page/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/login_page.dart -------------------------------------------------------------------------------- /lib/page/mobile_repo_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/mobile_repo_details.dart -------------------------------------------------------------------------------- /lib/page/repo_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/repo_details_page.dart -------------------------------------------------------------------------------- /lib/page/repo_list_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/repo_list_element.dart -------------------------------------------------------------------------------- /lib/page/repo_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/repo_page.dart -------------------------------------------------------------------------------- /lib/page/web_repo_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/web_repo_details.dart -------------------------------------------------------------------------------- /lib/page/welcome_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/page/welcome_page.dart -------------------------------------------------------------------------------- /lib/provider/provider_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/provider/provider_list.dart -------------------------------------------------------------------------------- /lib/route/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/route/routes.dart -------------------------------------------------------------------------------- /lib/service/basic_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/service/basic_service.dart -------------------------------------------------------------------------------- /lib/service/dashboard_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/service/dashboard_services.dart -------------------------------------------------------------------------------- /lib/service/fire_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/service/fire_base.dart -------------------------------------------------------------------------------- /lib/service/github_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/service/github_service.dart -------------------------------------------------------------------------------- /lib/service/issue_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/service/issue_service.dart -------------------------------------------------------------------------------- /lib/service/pull_request_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/service/pull_request_service.dart -------------------------------------------------------------------------------- /lib/service/table_data_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/service/table_data_service.dart -------------------------------------------------------------------------------- /lib/view_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/lib/view_util.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/admin_dashboard/HEAD/web/manifest.json --------------------------------------------------------------------------------