UNPKG

@dev-event/react-native-accordion

Version:

A performant interactive collapsed view with fully configurable options

32 lines (29 loc) 531 B
import { StyleSheet } from 'react-native'; const styles = StyleSheet.create({ content: { overflow: 'hidden', }, container: { position: 'absolute', top: 0, left: 0, right: 0, }, header: { backgroundColor: '#f5f5f7', flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingVertical: 14, paddingHorizontal: 12, height: 80 }, title: { fontSize: 16, fontWeight: 'bold', }, indicator:{ marginLeft: 12 } }); export { styles };