Ant Design Mobile RN是一款基于React Native的UI框架,旨在为开发者提供高效、便捷的移动应用UI组件。以下是一个使用Ant Design Mobile RN创建按钮的示例代码:
import React from 'react';
import { View, Text } from 'react-native';
import { Button } from '@ant-design/react-native';
const App = () => {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<Button type="primary" onPress={() => alert('按钮被点击')}>
点击我
</Button>
</View>
);
};
export default App;
在这个例子中,我们引入了Ant Design Mobile RN的Button
组件,并在一个React Native应用中渲染了一个主按钮。当按钮被点击时,会弹出一个简单的alert对话框。这个例子展示了如何使用Ant Design Mobile RN快速构建移动应用UI,并为开发者提供了一个实际的使用场景。