forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListSectionExample.tsx
137 lines (132 loc) · 3.94 KB
/
ListSectionExample.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import * as React from 'react';
import { ScrollView, StyleSheet, Image, View } from 'react-native';
import { List, Text, Chip, Divider, useTheme } from 'react-native-paper';
const ListSectionExample = () => {
const {
colors: { background },
} = useTheme();
return (
<ScrollView style={[styles.container, { backgroundColor: background }]}>
<List.Section>
<List.Subheader>Single line</List.Subheader>
<List.Item
left={(props) => <List.Icon {...props} icon="calendar" />}
title="List item 1"
/>
<List.Item
left={(props) => <List.Icon {...props} icon="wallet-giftcard" />}
title="List item 2"
/>
<List.Item
title="List item 3"
left={(props) => <List.Icon {...props} icon="folder" />}
right={(props) => <List.Icon {...props} icon="equal" />}
/>
</List.Section>
<Divider />
<List.Section>
<List.Subheader>Two line</List.Subheader>
<List.Item
left={() => (
<Image
source={require('../../assets/images/email-icon.png')}
style={styles.image}
/>
)}
title="List item 1"
description="Describes item 1"
/>
<List.Item
left={() => (
<Image
source={require('../../assets/images/email-icon.png')}
style={styles.image}
/>
)}
right={(props) => <List.Icon {...props} icon="information" />}
title="List item 2"
description="Describes item 2"
/>
</List.Section>
<Divider />
<List.Section>
<List.Subheader>Three line</List.Subheader>
<List.Item
left={() => (
<Image
source={require('../../assets/images/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/images/email-icon.png')}
style={styles.image}
/>
)}
right={(props) => <List.Icon {...props} icon="star-outline" />}
title="List item 2"
description="Describes item 2. Example of a very very long description."
/>
</List.Section>
<Divider />
<List.Section>
<List.Subheader>Custom description</List.Subheader>
<List.Item
left={() => (
<Image
source={require('../../assets/images/email-icon.png')}
style={styles.image}
/>
)}
right={(props) => <List.Icon {...props} icon="star-outline" />}
title="List Item 1"
description={({
ellipsizeMode,
color: descriptionColor,
fontSize,
}) => (
<View style={[styles.container, styles.column]}>
<Text
numberOfLines={2}
ellipsizeMode={ellipsizeMode}
style={{ color: descriptionColor, fontSize }}
>
React Native Paper is a high-quality, standard-compliant
Material Design library that has you covered in all major
use-cases.
</Text>
<View style={[styles.container, styles.row, { paddingTop: 8 }]}>
<Chip icon="file-pdf" onPress={() => {}}>
DOCS.pdf
</Chip>
</View>
</View>
)}
/>
</List.Section>
</ScrollView>
);
};
ListSectionExample.title = 'List.Section';
const styles = StyleSheet.create({
container: {
flex: 1,
},
image: {
height: 40,
width: 40,
margin: 8,
},
row: {
flexDirection: 'row',
},
column: {
flexDirection: 'column',
},
});
export default ListSectionExample;