Bliss - Dating app
  • Overview
  • Preview
    • Bliss App
    • Admin App
  • Features
    • Bliss App
    • Admin App
  • Instalation
    • Backend
    • Bliss App
    • Admin App
    • Build App
  • Packages
    • Backend
    • App
  • Structure
    • Backend
    • Bliss App
    • Admin App
  • Style of code writing
  • Customize
    • Languages
    • Theme
Powered by GitBook
On this page
  1. Structure

Admin App

Here the folder & files structure for Admin App

lib
 ├── app
 │    └── App.dart
 ├── auth
 │    └── Auth.dart
 ├── config
 │    ├── AppConfig.dart 
 │    ├── LocaleConfig.dart    
 │    └── NetConfig.dart
 ├── controllers 
 │    ├── AuthController.dart
 │    ├── DashboardController.dart
 │    ├── GenderController.dart
 │    ├── IntentController.dart
 │    ├── InterestController.dart
 │    ├── MemberController.dart
 │    ├── MenuDrawerController.dart
 │    ├── PassionController.dart
 │    ├── ReportActionController.dart 
 │    ├── ReportController.dart
 │    ├── ReportReasonController.dart
 │    ├── RolePermissionController.dart
 │    ├── SettingController.dart
 │    ├── SystemController.dart
 │    └── UserController.dart
 ├── extensions
 │    └── StringExtension.dart
 ├── helpers
 │    ├── AccessHelper.dart
 │    ├── InputHelper.dart
 │    └── LocaleHelper.dart
 ├── middlewares
 │    └── AuthMiddleware.dart
 ├── models
 │    ├── Dashboard.dart
 │    ├── EvidenceMedia.dart
 │    ├── EvidenceMessage.dart
 │    ├── EvidenceTypeModel.dart
 │    ├── Gender.dart
 │    ├── Intent.dart
 │    ├── Interest.dart
 │    ├── Item.dart
 │    ├── Language.dart
 │    ├── Location.dart
 │    ├── Media.dart
 │    ├── Member.dart
 │    ├── Menu.dart
 │    ├── PageData.dart
 │    ├── Passion.dart
 │    ├── Permission.dart
 │    ├── Report.dart
 │    ├── ReportAction.dart
 │    ├── ReportReason.dart
 │    ├── Role.dart
 │    ├── Setting.dart
 │    ├── Suspend.dart
 │    ├── User.dart
 │    └── UserReport.dart
 ├── network
 │    └── NetService.dart
 ├── router
 │    ├── models
 │    │    └── Middleware.dart
 │    │    └── SetRouter.dart
 │    ├── RouterService.dart
 │    ├── RouterUtil.dart
 │    └── Routes.dart
 ├── services
 │    ├── AuthService.dart
 │    ├── DashboardService.dart
 │    ├── GenderService.dart
 │    ├── IntentService.dart
 │    ├── InterestService.dart
 │    ├── MemberService.dart
 │    ├── PassionService.dart
 │    ├── ReportActionService.dart
 │    ├── ReportReasonService.dart
 │    ├── ReportService.dart
 │    ├── RolePermissionService.dart
 │    ├── SettingService.dart
 │    └── UserService.dart
 ├── storage
 │    └── SharedPrefs.dart
 ├── theme
 │    └── ThemeApp.dart
 ├── views
 │    ├── account
 │    │    ├── AccountChangeEmailView.dart
 │    │    ├── AccountChangePasswordView.dart
 │    │    ├── AccountEditProfileView.dart
 │    │    └── AccountSettingView.dart
 │    ├── auth
 │    │    ├── ForgotPasswordView.dart
 │    │    └── LoginView.dart
 │    ├── dashboard
 │    │    └── DashboardView.dart
 │    ├── gender
 │    │    ├── GenderCreateEditView.dart
 │    │    └── GenderView.dart
 │    ├── intent
 │    │    ├── IntentCreateEditView.dart
 │    │    └── IntentView.dart
 │    ├── interest
 │    │    ├── InterestCreateEditView.dart
 │    │    └── InterestView.dart
 │    ├── member
 │    │    ├── EditMemberView.dart
 │    │    └── MemberView.dart
 │    ├── memberReport
 │    │    └── MemberReportView.dart
 │    ├── passion
 │    │    ├── PassionCreateEditView.dart
 │    │    └── PassionView.dart
 │    ├── report
 │    │    ├── ReportActionCreateEditView.dart
 │    │    ├── ReportActionView.dart
 │    │    ├── ReportReasonCreateEditView.dart
 │    │    ├── ReportReasonView.dart
 │    │    └── ReportView.dart
 │    ├── role
 │    │    ├── RoleCreateEditView.dart
 │    │    └── RoleView.dart
 │    ├── setting
 │    │    └── SettingView.dart
 │    ├── user
 │    │    ├── UserCreateEditView.dart
 │    │    └── UserView.dart
 │    └── HomeView.dart
 ├── widgets
 │    ├── gender
 │    │    └── GenderWidgets.dart
 │    ├── home
 │    │    └── HomeWidgets.dart
 │    ├── ShowImageWidget.dart
 │    ├── StepWidget.dart
 │    ├── TheTableWidget.dart
 │    └── Widgets.dart
 └── main.dart
 
 
PreviousBliss AppNextStyle of code writing

Last updated 1 year ago