forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialogScrollArea.tsx
70 lines (65 loc) · 1.8 KB
/
DialogScrollArea.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
import * as React from 'react';
import { View, ViewStyle, StyleSheet, StyleProp } from 'react-native';
type Props = React.ComponentPropsWithRef<typeof View> & {
/**
* Content of the `DialogScrollArea`.
*/
children: React.ReactNode;
style?: StyleProp<ViewStyle>;
};
/**
* A component to show a scrollable content in a Dialog. The component only provides appropriate styling.
* For the scrollable content you can use `ScrollView`, `FlatList` etc. depending on your requirement.
*
* ## Usage
* ```js
* import * as React from 'react';
* import { ScrollView } from 'react-native';
* import { Dialog, Portal, Text } 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.ScrollArea>
* <ScrollView contentContainerStyle={{ paddingHorizontal: 24 }}>
* <Text>This is a scrollable area</Text>
* </ScrollView>
* </Dialog.ScrollArea>
* </Dialog>
* </Portal>
* );
* }
* }
* ```
*/
class DialogScrollArea extends React.Component<Props> {
static displayName = 'Dialog.ScrollArea';
render() {
return (
<View {...this.props} style={[styles.container, this.props.style]}>
{this.props.children}
</View>
);
}
}
const styles = StyleSheet.create({
container: {
borderColor: 'rgba(0, 0, 0, .12)',
borderTopWidth: StyleSheet.hairlineWidth,
borderBottomWidth: StyleSheet.hairlineWidth,
paddingHorizontal: 24,
flexGrow: 1,
flexShrink: 1,
},
});
export default DialogScrollArea;