“reaja estilos diferentes nativos para iOS e Android” Respostas de código

reaja estilos diferentes nativos para iOS e Android

import { Platform, StyleSheet } from 'react-native';

const styles = StyleSheet.create({
  height: Platform.OS === 'ios' ? 200 : 100
});
Beautiful Bee

reaja estilos diferentes nativos para iOS e Android

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'
      }
    })
  }
});
Tender Thrush

Respostas semelhantes a “reaja estilos diferentes nativos para iOS e Android”

Perguntas semelhantes a “reaja estilos diferentes nativos para iOS e Android”

Procure respostas de código populares por idioma

Procurar outros idiomas de código