“Bereaksi gaya asli yang berbeda untuk iOS dan android” Kode Jawaban

Bereaksi gaya asli yang berbeda untuk iOS dan android

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

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

Bereaksi gaya asli yang berbeda untuk iOS dan 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

Jawaban yang mirip dengan “Bereaksi gaya asli yang berbeda untuk iOS dan android”

Pertanyaan yang mirip dengan “Bereaksi gaya asli yang berbeda untuk iOS dan android”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya