“React Native Różne style na iOS i Android” Kod odpowiedzi

React Native Różne style na iOS i Android

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

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

React Native Różne style na iOS i 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

Odpowiedzi podobne do “React Native Różne style na iOS i Android”

Pytania podobne do “React Native Różne style na iOS i Android”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu