Skip to content

Latest commit

 

History

History
87 lines (85 loc) · 2.45 KB

project-structure.md

File metadata and controls

87 lines (85 loc) · 2.45 KB

Project Structure

.
├── __tests__
├── .bundle
├── .husky
├── android
├── environments
├── firebase
│   ├── development
│   ├── production
│   └── staging
├── ios
├── patches
├── scripts
└── src
    ├── assets
    │   ├── animations
    │   ├── icons
    │   │   ├── app-bar
    │   │   ├── checkbox
    │   │   └── tabs
    │   │       ├── home
    │   │       ├── messages
    │   │       ├── notification
    │   │       └── profile
    │   └── images
    ├── components
    │   ├── core
    │   │   ├── bottom-sheet
    │   │   ├── form
    │   │   ├── image
    │   │   ├── input
    │   │   │   ├── multiline
    │   │   │   └── singleline
    │   │   ├── list
    │   │   ├── loader
    │   │   ├── modal
    │   │   ├── picker
    │   │   ├── spacer
    │   │   ├── text
    │   │   └── touchable
    │   └── shared
    ├── core
    │   ├── @types
    │   ├── configs
    │   ├── constants
    │   ├── data
    │   ├── declarations
    │   ├── enums
    │   ├── interfaces
    │   └── types
    ├── features
    │   ├── authentication
    │   │   ├── components
    │   │   ├── containers
    │   │   ├── screens
    │   │   ├── services
    │   │   └── utils
    │   ├── showcase
    │   │   ├── components
    │   │   ├── containers
    │   │   ├── screens
    │   │   ├── services
    │   │   │   ├── apis
    │   │   │   └── schemas
    │   │   └── utils
    │   └── tab
    │       ├── components
    │       ├── containers
    │       ├── screens
    │       ├── services
    │       └── utils
    ├── hooks
    ├── i18n
    │   └── locales
    ├── layouts
    ├── navigators
    │   ├── stacks
    │   └── tabs
    ├── services
    ├── stores
    └── utils

For more detailed information, please refer to the project's GitHub repository.