Text
Show text.
Import
import { Text } from "@dhua5922/react-native-kit";
Examples
Live Editor
function Example() { return ( <Row> <Text>normal </Text> <Text type="success">success </Text> <Text type="danger">danger </Text> <Text type="warning">warning </Text> <Text type="info">info </Text> <Text bold>bold </Text> <Text underline>underlined</Text> </Row> ); }
Result
Loading...
Props
note
Include all props from Text
| Name | Type | Default | Description |
|---|---|---|---|
type | success, danger, warning, info, or default | default | Type of text |
underline | boolean | Underline text | |
bold | boolean | Bold text |