Platform-specific files:
Component.ios.tsxComponent.android.tsxComponent.native.tsxPlatform module:
1import { Platform } from "react-native";23const styles = {4 container: {5 paddingTop: Platform.OS === "ios" ? 44 : 24,6 },7};
Platform.select:
1const padding = Platform.select({2 ios: 44,3 android: 24,4 default: 0,5});
Native modules: