Skip to content

Instantly share code, notes, and snippets.

@anmolsukki
Last active March 31, 2022 09:26
Show Gist options
  • Save anmolsukki/a30c1e4653b0b28d6c5dc29b075131c3 to your computer and use it in GitHub Desktop.
Save anmolsukki/a30c1e4653b0b28d6c5dc29b075131c3 to your computer and use it in GitHub Desktop.
React Native Notes

What is react native?

- A Collection of "Special React Component"
- Components compile to ntive widges
- Native platform APIs exposed to javascript
- Connects Javascript and Native platform code

Styling

Step: 1

<View style={[styles.Container]}></View>

Step: 2

<View style={[styles.Container, { backgroundColor: 'red' }]}></View>

Step: 3

<View style={([styles.Container], { backgroundColor: 'red' })}></View>

Status Bar

For Status Bar Color

<StatusBar backgroundColor={'red'} />

Keyboard Dismiss

<View keyboardShouldPersistTaps="handled" contentInsetAdjustmentBehavior="automatic"></View>

Nice Alert Libraries

react-native-snackbar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment