- Introduced SpoolPreset and User domain models with necessary DTOs and utility functions. - Created AuthRepository, FilamentRepository, and SpoolPresetRepository interfaces for authentication and data management. - Implemented UI components for filament display, including ColorSwatch, FilamentCard, and StockBar. - Developed layout components such as Header and Screen for consistent app structure. - Added reusable UI components like Badge, Button, Card, and Input for better user interaction. - Established global constants and theme settings for consistent styling across the application. - Implemented utility functions for filament calculations and formatting. - Created Zustand stores for managing authentication, filament, and preset states. - Configured TypeScript settings for improved development experience.
9 lines
751 B
Markdown
9 lines
751 B
Markdown
> Why do I have a folder named ".expo" in my project?
|
|
The ".expo" folder is created when an Expo project is started using "expo start" command.
|
|
> What do the files contain?
|
|
- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds.
|
|
- "settings.json": contains the server configuration that is used to serve the application manifest.
|
|
> Should I commit the ".expo" folder?
|
|
No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine.
|
|
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.
|