ReactNative app #7 : Home (header, category, product list)
Configuration for header Add folders and files. Apps ├── Compoents │ ├── Slider.jsx │ ├── PostItem.jsx │ ├── Categories.jsx │ ├── Header.jsx │ └── LatestItemList.cs ├── Screens │ ├── ...
Configuration for header Add folders and files. Apps ├── Compoents │ ├── Slider.jsx │ ├── PostItem.jsx │ ├── Categories.jsx │ ├── Header.jsx │ └── LatestItemList.cs ├── Screens │ ├── ...
When it comes to creating forms in React Native applications, managing state and user input can be a complex task. Luckily, libraries like Formik provide a convenient way to handle form logic and v...
Create reactNative Firebase setup and Add Post Go to https://console.firebase.google.com/ → select web application → Register app (Comunity MarketPlace) → npm install firebase → add firebas...
This is to implement the navigation. Go to reactnavigation.org Install the required packages in your React Native project: npm install @react-navigation/native Installing dependencies into an E...
In this tutorial, I’ll walk through setting up a basic e-commerce app using React Native Expo and integrating Clerk authentication for seamless login with Google. Setting Up Expo and Basic Proj...
Are you looking to streamline your course management process? With ASP.NET Core, you can create a robust web application to manage courses and student enrollments efficiently. In this tutorial, we’...
Cookies are a fundamental aspect of web development, allowing web applications to store small pieces of data on the client-side. In ASP.NET Core, managing cookies is straightforward, thanks to the ...
In the realm of programming, randomness often plays a crucial role, whether it’s for shuffling items in a list, generating unique identifiers, or simulating uncertain events. One common task is gen...
prerequisite : node.js, javascript Select a starting folder for the project execute npm init -y on terminal ├── CHAT_TEST │ └── package.json install dependencies npm install –save express ...
Find all unique studentId from the json file. Working with JSON data is a common task in modern software development, especially when dealing with APIs, databases, or configuration files. In this ...