The "SAKDEE CARE PLUS" App is designed to help users easily understand and interpret laundry care symbols found on clothing labels. Users can select a symbol that matches their clothing label, and the app will provide a detailed explanation of its meaning, along with care instructions.
Clone the project
git clone https://github.com/Lrfith/SAKDEE-CARE-PLUS.gitYou wll get SAKDEE-CARE-PLUS folder.
Go to the project directory
cd SAKDEE-CARE-PLUS/projectInstall dependencies
npm installStart the App in Android Simulator
npm run android- Pull the latest changes: Run the following Git command to fetch the latest updates from the remote repository and merge them into your local branch:
git pull origin main(Note: Replace main with the appropriate branch name if you're working with a different one.)
- Resolve conflicts (if any): If there are merge conflicts, resolve them manually in your code editor, then stage the changes:
git add .- Commit your changes (if you made updates to the code): Once your changes are resolved and staged, commit the updates:
git commit -m "Updated code with latest changes"- Push your changes (if necessary): After committing, if you need to push your updates back to the remote repository, use:
git push origin main