Skip to content

RN 的组件

核心组件 (from react-native)

  • View
  • Button
  • FlatList, SectionList
  • RefreshControl
  • Text
  • TextInput
  • Image
  • Modal
  • ScrollView
  • VirtualizedList
  • Switch
  • StatusBar
  • ...

自定义组件

用户自己定义的组件

社区组件

从社区下载的第三方 UI

区分 RN 运行环境

jsx
import { Platform } from "react-native";

const judegePlatform = () => {
  return <>{Platform.OS === "ios" ? <Text>IOS</Text> : <Text>Android</Text>}</>;
};
jsx
const Component = Platform.select({
  ios: () => require("ComponentIOS"),
  android: () => require("ComponentAndroid"),
})();

<Component />;

const Component2 = Platform.select({
  native: () => require("ComponentForNative"),
  default: () => require("ComponentForWeb"),
})();

<Component2 />;
jsx
import { Platform } from "react-native";

if (Platform.Version === 25) {
  console.log("Running on Nougat!");
}
jsx
import { Platform } from "react-native";

const majorVersionIOS = parseInt(Platform.Version, 10);
if (majorVersionIOS <= 9) {
  console.log("Work around a change in behavior");
}
2025( )
今日 8.33%
本周 42.86%
本月 48.39%
本年 4.11%
Powered by Snowinlu | Copyright © 2024- | MIT License