项目作者: yezarela

项目描述 :
Expandable container for react-native
高级语言: JavaScript
项目地址: git://github.com/yezarela/react-native-expandable.git
创建时间: 2018-02-15T06:57:03Z
项目社区:https://github.com/yezarela/react-native-expandable

开源协议:MIT License

下载


React Native Expandable

npm version

Expandable/collapsible container for react-native

Installation

  1. yarn add react-native-expandable

Props

Prop Name Value
title string
collapsed boolean

Usage

  1. import Expandable from 'react-native-expandable';
  2. <ScrollView showsVerticalScrollIndicator={false}>
  3. <View style={{ height: '100%' }}>
  4. <Expandable title="Amazing Title" collapsed={false}>
  5. <View style={{ flexDirection: 'row', alignItems: 'center' }}>
  6. <View style={{ flex: 1 }}>
  7. <Text>Amazing!</Text>
  8. </View>
  9. </View>
  10. </Expandable>
  11. </View>
  12. </ScrollView>;