一个主题化的文本输入框组件。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
disabled |
boolean |
❌ | false |
输入框是否已禁用 |
placeholder |
string |
❌ | '' |
占位符文本 |
type |
string |
❌ | 'text' |
输入类型 |
style |
StyleProp<any> |
❌ | - | 自定义样式 |
onChangeText |
(s: string) => void |
❌ | - | 文本更改时的回调函数 |
import { RtkTextField } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return <RtkTextField placeholder="Enter your name" />;
}import { RtkTextField } from "@cloudflare/realtimekit-react-native-ui";
function MyComponent() {
return (
<RtkTextField
placeholder="Enter display name"
onChangeText={(text) => setName(text)}
disabled={false}
/>
);
}