Q:

react native styles for both platforms

  const design = Platform.select({
    android: {
      header: true
    },
    ios: {
	  header: false
    },
  });
1
import { Platform, StyleSheet } from 'react-native';

const styles = StyleSheet.create({
  container: {
    flex: 1,
    ...Platform.select({
      ios: {
        backgroundColor: 'red'
      },
      android: {
        backgroundColor: 'green'
      },
      default: {
        // other platforms, web for example
        backgroundColor: 'blue'
      }
    })
  }
});
0

New to Communities?

Join the community