React Native 实战:使用 TypeScript 开发移动应用
import React, { useState } from 'react';
import { Text, View, Button } from 'react-native';
interface IAppProps { }
const App: React.FC<IAppProps> = () => {
const [count, setCount] = useState(0);
const increment = () => {
setCount(count + 1);
};
return (
<View>
<Text>Count: {count}</Text>
<Button title="Increment" onPress={increment} />
</View>
);
};
export default App;
这段代码展示了如何在React Native应用中使用TypeScript和hooks来创建一个简单的计数器。它定义了一个名为App
的React组件,使用useState
钩子来管理状态,并在用户点击按钮时更新计数。这是学习React Native和TypeScript结合使用的一个很好的起点。
评论已关闭