Top "React-native" questions

React native is a JavaScript library used to build native mobile apps using React.

setTimeout in React Native

I'm trying to load a splash screen for an iOS app built in React Native. I'm trying to accomplish this …

javascript ios settimeout react-native
How to use global variables in React Native?

In React Native I want to use global variables when I am moving between different screens Can anyone help me …

react-native
Module AppRegistry is not registered callable module (calling runApplication)

I am using native base for making app in react-native. I am new to both things. When I run the …

react-native native-base
In React Native, how do I put a view on top of another view, with part of it lying outside the bounds of the view behind?

I'm trying to make a layout as per below with React Native. How do I specify the position of B …

react-native
How to create helper file full of functions in react native?

Though there is a similar question I am failing to create a file with multiple functions. Not sure if the …

reactjs react-native
How to use ImageBackground to set background image for screen in react-native

When I use in react-native it gives warning that using with children is deprecated and will be error in future. …

javascript react-native imagebackground
Can I make dynamic styles in React Native?

Say I have a component with a render like this: <View style={jewelStyle}></View> Where jewelStyle = { …

css reactjs react-native
How to add icons to React Native app

I am making a React Native app. I would like to customize the app icon (meaning the icon that you …

icons react-native
Disabling buttons on react native

I'm making an android app using react native and I've used TouchableOpacity component to create buttons. I use a text …

react-native
How can I force component to re-render with hooks in React?

Considering below hooks example import { useState } from 'react'; function Example() { const [count, setCount] = useState(0); return ( <div> <p&…

javascript reactjs react-native react-hooks