ποΈProject Structure
Open your new project on your editor and you will see the following structure
src
βββ assets
β βββ icons
β β βββ index.ts
β βββ illustrations
β β βββ index.ts
β βββ index.ts
βββ components
β βββ bottom-sheet.tsx
β βββ button.tsx
β βββ ...
βββ config
β βββ config.ts
β βββ nums.ts
β βββ ...
βββ hooks
β βββ use-padding-bottom.ts
β βββ index.ts
βββ i18n
β βββ id.json
β βββ i18n.ts
β βββ ...
βββ navigator
β βββ stack-navigator.tsx
β βββ stack-screens.ts
β βββ ...
βββ screens
β βββ home
β β βββ home-screen.tsx
β β βββ style.ts
β βββ login
β β βββ login-screen.tsx
β β βββ style.ts
β βββ ...
βββ services
β βββ api
β β βββ api.ts
β β βββ app-base-query.ts
β β βββ ...
β βββ notification
β β βββ notification-press-handler.ts
β β βββ notification.ts
β β βββ ...
βββ store
β βββ slices
β β βββ auth-slice.ts
β β βββ index.ts
β βββ root-reducer.ts
β βββ store.ts
β βββ ...
βββ styles
β βββ colors.ts
β βββ typography.ts
β βββ ...
βββ types
β βββ api-types.ts
β βββ app-types.ts
β βββ ...
βββ utils
β βββ image-picker.ts
β βββ storage.ts
β βββ ...
βββ app.tsx
assets
components
config
hooks
i18n
navigator
screens
services
store
styles
types
utils
Last updated