forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListSectionExample.js
96 lines (90 loc) · 2.53 KB
/
ListSectionExample.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* @flow */
import * as React from 'react';
import { ScrollView, StyleSheet, Image } from 'react-native';
import { List, Divider, withTheme, type Theme } from 'react-native-paper';
type Props = {
theme: Theme,
};
class ListSectionExample extends React.Component<Props> {
static title = 'List.Section';
render() {
const {
theme: {
colors: { background },
},
} = this.props;
return (
<ScrollView style={[styles.container, { backgroundColor: background }]}>
<List.Section title="Single line">
<List.Item
left={props => <List.Icon {...props} icon="event" />}
title="List item 1"
/>
<List.Item
left={props => <List.Icon {...props} icon="redeem" />}
title="List item 2"
/>
</List.Section>
<Divider />
<List.Section title="Two line">
<List.Item
left={() => (
<Image
source={require('../assets/email-icon.png')}
style={styles.image}
/>
)}
title="List item 1"
description="Describes item 1"
/>
<List.Item
left={() => (
<Image
source={require('../assets/email-icon.png')}
style={styles.image}
/>
)}
right={props => <List.Icon {...props} icon="info" />}
title="List item 2"
description="Describes item 2"
/>
</List.Section>
<Divider />
<List.Section title="Three line">
<List.Item
left={() => (
<Image
source={require('../assets/email-icon.png')}
style={styles.image}
/>
)}
title="List item 1"
description="Describes item 1. Example of a very very long description."
/>
<List.Item
left={() => (
<Image
source={require('../assets/email-icon.png')}
style={styles.image}
/>
)}
right={props => <List.Icon {...props} icon="star-border" />}
title="List item 2"
description="Describes item 2. Example of a very very long description."
/>
</List.Section>
</ScrollView>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
image: {
height: 40,
width: 40,
margin: 8,
},
});
export default withTheme(ListSectionExample);