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

Bliss App

Here the folder & files structure for Bliss App

lib
 ├── app
 │    └── App.dart
 ├── auth
 │    └── Auth.dart
 ├── config
 │    ├── LocaleConfig.dart    
 │    └── NetConfig.dart
 ├── controllers 
 │    ├── AuthController.dart
 │    ├── DiscoverController.dart
 │    ├── GenderController.dart
 │    ├── IntentController.dart
 │    ├── InterestController.dart
 │    ├── MatchedController.dart
 │    ├── MessageController.dart
 │    ├── PassionController.dart
 │    ├── ReportController.dart 
 │    ├── SystemController.dart
 │    ├── UserBlockController.dart
 │    └── UsersMessageController.dart
 ├── extensions
 │    └── StringExtension.dart
 ├── helpers
 │    ├── AccessHelper.dart
 │    ├── LocaleHelper.dart
 │    └── ReportHelper.dart
 ├── middlewares
 │    └── AuthMiddleware.dart
 ├── models
 │    ├── Gender.dart
 │    ├── Intent.dart
 │    ├── Interest.dart
 │    ├── Language.dart
 │    ├── Location.dart
 │    ├── Media.dart
 │    ├── Message.dart
 │    ├── Passion.dart
 │    ├── ReportAction.dart
 │    ├── ReportReason.dart
 │    ├── SwapModel.dart
 │    ├── User.dart
 │    └── UserMessage.dart
 ├── network
 │    ├── NetService.dart
 │    └── SocketService.dart
 ├── router
 │    ├── models
 │    │    └── Middleware.dart
 │    │    └── SetRouter.dart
 │    ├── RouterService.dart
 │    ├── RouterUtil.dart
 │    └── Routes.dart
 ├── services
 │    ├── AuthService.dart
 │    ├── DiscoverService.dart
 │    ├── GenderService.dart
 │    ├── IntentService.dart
 │    ├── InterestService.dart
 │    ├── MessageService.dart
 │    ├── PassionService.dart
 │    ├── ReportService.dart
 │    └── UserService.dart
 ├── storage
 │    └── SharedPrefs.dart
 ├── theme
 │    └── ThemeApp.dart
 ├── views
 │    ├── account
 │    │    ├── AccountChangeEmailView.dart
 │    │    ├── AccountChangePasswordView.dart
 │    │    ├── AccountEditProfileView.dart
 │    │    ├── AccountInterestView.dart
 │    │    ├── AccountPassionView.dart
 │    │    ├── AccountSettingView.dart
 │    │    ├── AccountUsersBlockedView.dart
 │    │    └── AccountView.dart
 │    ├── auth
 │    │    ├── ForgotPasswordView.dart
 │    │    ├── LoginView.dart
 │    │    └── RegisterView.dart
 │    ├── discover
 │    │    ├── DiscoverView.dart
 │    │    └── ItsMatchView.dart
 │    ├── matched
 │    │    └── MatchedView.dart
 │    ├── message
 │    │    ├── MessageView.dart
 │    │    └── UsersMessageView.dart
 │    ├── report
 │    │    ├── ReportView.dart
 │    ├── user
 │    │    └── UserProfileView.dart
 │    ├── HomeView.dart
 │    └── IndexView.dart
 ├── widgets
 │    ├── account
 │    │    ├── AccountEditWidget.dart
 │    │    └── AccountSettingWidget.dart
 │    ├── discover
 │    │    └── SwipeWidget.dart
 │    ├── matched
 │    │    └── MatchedWidget.dart
 │    ├── message
 │    │    ├── MessageWidget.dart
 │    │    └── UserMessageWidget.dart
 │    ├── user
 │    │    └── UserProfileWidget.dart
 │    ├── ShowImageWidget.dart
 │    ├── StepWidget.dart
 │    └── Widgets.dart
 └── main.dart
 
 
PreviousBackendNextAdmin App

Last updated 1 year ago