“React Native diferentes estilos para iOS y Android” Código de respuesta

React Native diferentes estilos para iOS y Android

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

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

React Native diferentes estilos para iOS y 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

Respuestas similares a “React Native diferentes estilos para iOS y Android”

Preguntas similares a “React Native diferentes estilos para iOS y Android”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código