#react-native
Read more stories on Hashnode
Articles with this tag
A Horizontal ScrollView in React Native is a component used to display a list of scrollable items horizontally. It works similarly to the default...
A component can specify the layout of its children using the Flexbox algorithm. Flexbox is designed to provide a consistent layout on different screen...
In React Native, the "StyleSheet" component is used to define styles for your components. It provides a way to separate the style definitions from the...
Quick Note: __tests__/: A directory containing test files for your application. Tests can be written using testing frameworks such as Jest.Testers...
import React from 'react' import { View, Text, SafeAreaView } from 'react-native' function App(){ return( <SafeAreaView> <View> <Text>...
STEP 1:create a project called AwesomeProject npx react-native init AwesomeProject Step 2:Check and confirm USB debugging /Developer option...