mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-12 09:08:12 +08:00
91 lines
2.3 KiB
JavaScript
91 lines
2.3 KiB
JavaScript
/* @flow */
|
|
|
|
import * as React from 'react';
|
|
import { ScrollView, StyleSheet, Image } from 'react-native';
|
|
import { ListSection, ListItem, Divider, withTheme } from 'react-native-paper';
|
|
import type { Theme } from 'react-native-paper/types';
|
|
|
|
type Props = {
|
|
theme: Theme,
|
|
};
|
|
|
|
class ListSectionExample extends React.Component<Props> {
|
|
static title = 'ListSection';
|
|
|
|
render() {
|
|
const {
|
|
theme: {
|
|
colors: { background },
|
|
},
|
|
} = this.props;
|
|
return (
|
|
<ScrollView style={[styles.container, { backgroundColor: background }]}>
|
|
<ListSection title="Single line">
|
|
<ListItem icon="event" title="List item 1" />
|
|
<ListItem icon="redeem" title="List item 2" />
|
|
</ListSection>
|
|
<Divider />
|
|
<ListSection title="Two line">
|
|
<ListItem
|
|
avatar={
|
|
<Image
|
|
source={require('../assets/email-icon.png')}
|
|
style={styles.avatar}
|
|
/>
|
|
}
|
|
title="List item 1"
|
|
description="Describes item 1"
|
|
/>
|
|
<ListItem
|
|
icon="info"
|
|
avatar={
|
|
<Image
|
|
source={require('../assets/email-icon.png')}
|
|
style={styles.avatar}
|
|
/>
|
|
}
|
|
title="List item 2"
|
|
description="Describes item 2"
|
|
/>
|
|
</ListSection>
|
|
<Divider />
|
|
<ListSection title="Three line">
|
|
<ListItem
|
|
avatar={
|
|
<Image
|
|
source={require('../assets/email-icon.png')}
|
|
style={styles.avatar}
|
|
/>
|
|
}
|
|
title="List item 1"
|
|
description="Describes item 1. Example of a very very long description."
|
|
/>
|
|
<ListItem
|
|
icon="star-border"
|
|
avatar={
|
|
<Image
|
|
source={require('../assets/email-icon.png')}
|
|
style={styles.avatar}
|
|
/>
|
|
}
|
|
title="List item 2"
|
|
description="Describes item 2. Example of a very very long description."
|
|
/>
|
|
</ListSection>
|
|
</ScrollView>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
avatar: {
|
|
height: 40,
|
|
width: 40,
|
|
},
|
|
});
|
|
|
|
export default withTheme(ListSectionExample);
|