Technologies | Project | How to contribute | License
This project was developed with the following technologies:
- Axios: "^0.19.2"
- React: "^16.13.1"
- React-native
- React-native-gesture-handler: "^1.6.1"
- React-native-vector-icons: "^6.6.0"
- Styled-components: "^5.1.0"
- Json-server: "^0.16.1",
- axios-mock-adapter: "^1.18.1"
- eslint: "^6.8.0"
- jest: "^24.9.0"
- prettier: "^2.0.4"
- typescript: "^3.8.3"
Creating an application that simulates a market place. In this application it was possible to use basic fundamentals of React Native.
We can also select the items available for sale, add or remove items and check the total value of the order.
So that you can see the application working, first of all, a fake API must be used to provide you with the data.
For that, I left installed in package.json a dependency called json-server
, and a file called server.json
that contains the data for a / products
route. To run this server you can run the following command:
yarn json-server server.json -p 3333
- Fork this repository;
- Create a branch with your feature:
git checkout -b <i>minha-feature</i>
; - Commit your changes:
git commit -m 'feat: Minha nova feature'
; - Push to your branch:
git push origin minha-feature
.
After merging your receipt request to done, you can delete a branch from yours.