We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const _head = (item , index , isExpanded) => { return( <CollapseHeader style={{ marginVertical:5, borderWidth:1, flexDirection:'row', paddingHorizontal:5, borderRadius:5, borderColor:global.BtnColor , paddingVertical:5 ,flexDirection:'row'}}> <View style={{ width:'90%',}}>
<Text style={{fontFamily:'roboto',fontSize:18, color:colors.text, fontWeight:'700' }}>{item.heading}</Text> </View> <Icon size={30} color= {colors.text} name={ isExpanded ? 'ios-arrow-down': 'ios-arrow-up'} style={{alignSelf:'center'}} /> </CollapseHeader> ); }
<AccordionList disabled = {true} isCollapsed = {true} bounces={false} //onToggle={(item, index , isExpanded) => onToggle_covered(item, index , isExpanded)} list={myhtml} header={_head} body={_body} />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
const _head = (item , index , isExpanded) => {
return(
<CollapseHeader style={{ marginVertical:5, borderWidth:1, flexDirection:'row',
paddingHorizontal:5, borderRadius:5, borderColor:global.BtnColor , paddingVertical:5 ,flexDirection:'row'}}>
<View style={{ width:'90%',}}>
<AccordionList
disabled = {true}
isCollapsed = {true}
bounces={false}
//onToggle={(item, index , isExpanded) => onToggle_covered(item, index , isExpanded)}
list={myhtml}
header={_head}
body={_body}
/>
The text was updated successfully, but these errors were encountered: