# Project Structure

```
.
├── __tests__
├── .bundle
├── .husky
├── android
├── environments
├── firebase
│   ├── development
│   ├── production
│   └── staging
├── ios
├── 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
    │   │   └── utilities
    │   ├── showcase
    │   │   ├── components
    │   │   ├── containers
    │   │   ├── screens
    │   │   ├── services
    │   │   │   ├── apis
    │   │   │   └── schemas
    │   │   └── utilities
    │   └── tab
    │       ├── components
    │       ├── containers
    │       ├── screens
    │       ├── services
    │       └── utilities
    ├── hooks
    ├── layouts
    ├── libs
    │   ├── i18n
    │   │   └── locales
    │   └── tailwind
    ├── navigators
    │   ├── stacks
    │   └── tabs
    ├── services
    ├── stores
    └── utils
```

For more detailed information, please refer to the [project's GitHub repository](https://github.com/thiendo261/react-native-template/tree/main/template).
