@Josin22 Apply noBorder prop on ListItem.
<ListItem noBorder>
<ListItem avatar key={'item'+data.id} noBorder={true}> not working
it should be
@Josin22 still not working
try this :
@ShaileshPrajapati-BTC In <ListItem/> add borderBottomWidth:0 to style for both <Body> and <Right> components
<ListItem avatar>
<Body style={{ borderBottomWidth: 0 }}></Body>
<Right style={{ borderBottomWidth: 0 }}></Right>
</ListItem>
Finally managed to do this!
Just set _containerStyle_ for ListItem to borderBottomColor: 'transparent' and borderBottomWidth: 0
Most helpful comment
@Josin22 Apply
noBorderprop on ListItem.