forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialogTitle.tsx
81 lines (74 loc) · 1.78 KB
/
DialogTitle.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import * as React from 'react';
import { StyleSheet, StyleProp, TextStyle } from 'react-native';
import Title from '../Typography/Title';
import { withTheme } from '../../core/theming';
import { Theme } from '../../types';
type Props = React.ComponentPropsWithRef<typeof Title> & {
/**
* Title text for the `DialogTitle`.
*/
children: React.ReactNode;
style?: StyleProp<TextStyle>;
/**
* @optional
*/
theme: Theme;
};
/**
* A component to show a title in a Dialog.
*
* ## Usage
* ```js
* import * as React from 'react';
* import { Paragraph, Dialog, Portal } from 'react-native-paper';
*
* export default class MyComponent extends React.Component {
* state = {
* visible: false,
* };
*
* _hideDialog = () => this.setState({ visible: false });
*
* render() {
* return (
* <Portal>
* <Dialog
* visible={this.state.visible}
* onDismiss={this._hideDialog}>
* <Dialog.Title>This is a title</Dialog.Title>
* <Dialog.Content>
* <Paragraph>This is simple dialog</Paragraph>
* </Dialog.Content>
* </Dialog>
* </Portal>
* );
* }
* }
* ```
*/
class DialogTitle extends React.Component<Props> {
static displayName = 'Dialog.Title';
render() {
const { children, theme, style, ...rest } = this.props;
return (
<Title
accessibilityTraits="header"
accessibilityRole="header"
style={[styles.text, { color: theme.colors.text }, style]}
{...rest}
>
{children}
</Title>
);
}
}
const styles = StyleSheet.create({
text: {
marginTop: 22,
marginBottom: 18,
marginHorizontal: 24,
},
});
export default withTheme(DialogTitle);
// @component-docs ignore-next-line
export { DialogTitle };