我正在寻找最好的库来为我的react-native应用程序实现手风琴Listview。我知道有几个可用的库。但是,就扩展和实现而言,我仍然不知道哪一个最适合手风琴。有什么建议吗?
答案 0 :(得分:0)
看this one:
import Accordion from 'react-native-collapsible/Accordion';
<Accordion
sections={['Section 1', 'Section 2', 'Section 3']}
renderSectionTitle={this._renderSectionTitle}
renderHeader={this._renderHeader}
renderContent={this._renderContent}
/>;
答案 1 :(得分:0)
到目前为止,我已经使用了许多手风琴,但是我推荐的最好的是React Native Collapsible。它具有许多出色的功能和易于使用的API。开发人员还可以快速响应问题,并且社区积极维护回购协议。