react native中最重要的核心组件如下 -
| React Native组件 | Android本机视图 | IOS本机视图 | 网络浏览器 | 说明 |
|---|---|---|---|---|
| 查看 - <View> | 当应用程序在 Android 设备中显示时,<View> 组件将更改为 <ViewGroup> | 当应用程序出现时在 IOS 设备中看到 <View> 组件将更改为 <UIView> | 在 Web 浏览器中看到 <View> 组件将更改为 <div> 标签 | 是支持flexbox布局的核心容器。它还管理触摸处理。 |
| 文本 - <Text> | 当应用程序出现在Android 设备 <Text> 组件将更改为 <TextView> | 当应用程序在 IOS 设备中看到时,<Text> 组件将更改为 <UITextView> | 当在网络浏览器中看到时,<Text> 组件将更改为 <p> 标签 | 用于向用户显示文本。它还处理样式和触摸事件。 |
| 图像 - <Image> | 当应用程序在 Android 设备中看到 <Image> 组件将更改为 <ImageView> | 当在 IOS 设备中看到该应用时,<Image> 组件将更改为 <UIImageView>
|
当在网页浏览器中看到时,<Image>组件将更改为<img>标签 | 用于显示图像。 | Scrollview - <ScrollView> | 当应用程序在 Android 设备中看到时,<ScrollView> 组件将更改为 <ScrollView> | 当应用程序在 IOS 设备中看到时,<ScrollView> 组件将更改为 <UIScrollView>当在 Web 浏览器中看到时,<ScrollView> 组件将更改为 <div> 标签 | 具有组件和视图的滚动容器。 |
| TextInput - <TextInput> | 当应用程序在 Android 设备中显示时,<TextInput> 组件将更改为 <EditText> | 当应用程序在 IOS 设备中显示时,<TextInput> 组件将更改为 <EditText>更改为 <UITextField> | 当在 Web 浏览器中看到 <TextInput> 组件时,将更改为 <input type="text"> 标记。 | 用户可以在其中输入文本的输入元素 |
以下是 <View>、<Text>、<Image>、<ScrollView> 和 <TextInput> 的工作示例
要使用 Text、View、Image、ScrollView、TextInput,您需要从react-native 导入组件,如下所示 - p>
import { View, Text, Image, ScrollView, TextInput } from 'react-native';View组件主要用来保存文字、按钮、图片等,该组件的使用方法如下 -
<View>
<Text style={{ padding:"10%", color:"red" }}>Inside View Container</Text>
<Image
source={{
uri: 'https://www.tutorialspoint.com/react_native/images/logo.png',
}}
style={{ width: 311, height: 91 }}
/>
</View>里面有文本和图像组件。 ScrollView 组件的行为类似于处理 View、Text、Image、Button 和其他 React Native 组件的父组件。
import React from 'react';
import { View, Text, Image, ScrollView, TextInput } from 'react-native';
const App = () => {
return (
<ScrollView>
<Text style={{ padding:"10%", color:"green", "fontSize":"25" }}>Welcome to TutorialsPoints!</Text>
<View>
<Text style={{ padding:"10%", color:"red" }}>Inside View Container</Text>
<Image
source={{
uri:'https://www.tutorialspoint.com/react_native/images/logo.png',
}}
style={{ width: 311, height: 91 }}
/>
</View>
<TextInput
style={{
height: 40,
borderColor: 'black',
borderWidth: 1
}}
defaultValue="Type something here"
/>
</ScrollView>
);
}
export default App;
以上就是列出React Native重要的核心组件的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号