├── .gitignore ├── App.tsx ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── avator.png ├── categories │ ├── dairy.jpeg │ ├── fruits.jpeg │ ├── grains.jpeg │ └── vegetables.jpeg ├── favicon.png ├── icon.png ├── index.js ├── logo.png ├── splash.png └── splash_img.png ├── babel.config.js ├── eas.json ├── firebaseConfig.ts ├── metro.config.js ├── package.json ├── src ├── components │ ├── Login.tsx │ ├── Nav.tsx │ └── Signup.tsx ├── data │ ├── categoriesData.js │ └── farmerData.js └── screens │ ├── Cart.tsx │ ├── Contact.tsx │ ├── FarmerProfile.tsx │ ├── Home.tsx │ ├── Payment.tsx │ ├── ProductDetail.tsx │ ├── Products.tsx │ ├── Profile.tsx │ ├── Splash.tsx │ └── Welcome.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/avator.png -------------------------------------------------------------------------------- /assets/categories/dairy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/categories/dairy.jpeg -------------------------------------------------------------------------------- /assets/categories/fruits.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/categories/fruits.jpeg -------------------------------------------------------------------------------- /assets/categories/grains.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/categories/grains.jpeg -------------------------------------------------------------------------------- /assets/categories/vegetables.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/categories/vegetables.jpeg -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/index.js -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/assets/splash_img.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/babel.config.js -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/eas.json -------------------------------------------------------------------------------- /firebaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/firebaseConfig.ts -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/components/Login.tsx -------------------------------------------------------------------------------- /src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/components/Nav.tsx -------------------------------------------------------------------------------- /src/components/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/components/Signup.tsx -------------------------------------------------------------------------------- /src/data/categoriesData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/data/categoriesData.js -------------------------------------------------------------------------------- /src/data/farmerData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/data/farmerData.js -------------------------------------------------------------------------------- /src/screens/Cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Cart.tsx -------------------------------------------------------------------------------- /src/screens/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Contact.tsx -------------------------------------------------------------------------------- /src/screens/FarmerProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/FarmerProfile.tsx -------------------------------------------------------------------------------- /src/screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Home.tsx -------------------------------------------------------------------------------- /src/screens/Payment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Payment.tsx -------------------------------------------------------------------------------- /src/screens/ProductDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/ProductDetail.tsx -------------------------------------------------------------------------------- /src/screens/Products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Products.tsx -------------------------------------------------------------------------------- /src/screens/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Profile.tsx -------------------------------------------------------------------------------- /src/screens/Splash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Splash.tsx -------------------------------------------------------------------------------- /src/screens/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/src/screens/Welcome.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s2sharpit/krishi-bazaar/HEAD/tsconfig.json --------------------------------------------------------------------------------