styles in react native

JavaScript
//Import
import { StyleSheet} from 'react-native';

//Add style in React native component this way
<View style={styles.container}>
</View>
  
//create your style this way
const styles = StyleSheet.create({
  container: {
    marginTop: 50,
  },
});
Source

Also in JavaScript: