PPPranabesh Pratiharinpranabesh.hashnode.dev·Jan 12, 2025 · 4 min readEcom React Native Applicationimport React from 'react'; import ProductList from './components/ProductList'; import { NavigationContainer } from '@react-navigation/native'; import { createNativeStackNavigator } from '@react-navigation/native-stack'; import ProductDetails from './...00
PPPranabesh Pratiharinpranabesh.hashnode.dev·Jan 12, 2025 · 2 min readDesign Input Field In React Nativeimport { StyleSheet, Text, View, TextInput, TouchableOpacity } from 'react-native'; import React, { useState } from 'react'; const About = () => { const [input1, setInput1] = useState(''); const [input2, setInput2] = useState(''); const [input...00
PPPranabesh Pratiharinpranabesh.hashnode.dev·Jan 2, 2025 · 3 min readCRUD in React JSimport { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import './index.css' import From from './From.jsx' createRoot(document.getElementById('root')).render( <StrictMode> <Form/> </StrictMode>, ) Code For Create , ...00
PPPranabesh Pratiharinpranabesh.hashnode.dev·Oct 26, 2024 · 1 min readUpgrade Your Node.Js To Latest VersionGo to the Node.Js official website and download the file from this link website link . Download the file and run it like you do .You don't need to uninstall your previous node from your computer. If you uninstall and then reinstall it then you will f...00
PPPranabesh Pratiharinpranabesh.hashnode.dev·Mar 29, 2024 · 1 min readSQLite3::IOException: disk I/O error 🤯My Solution: I was developing a Rails application where i was using SQLITE as a database. While saving data in my database I wanted to check in my database whether it is getting saved or not. To check this I was not using rails console . I was using ...00