React-native-elements: ListItem separator is being displaying different shades on ios

Created on 5 Jan 2018  Â·  3Comments  Â·  Source: react-native-elements/react-native-elements

Description

The default ListItem separator is being displayed in varying shades of gray on ios. In below attached file the separator after the first, third, sixth items are slightly darker than others.

screen shot 2018-01-05 at 15 43 19

This works fine on android.

Also is there a way to change the color of these separator to a custom one ?

"react": "^16.0.0-beta.5", "react-native": "^0.49.5", "react-native-elements": "^0.17.0",

Reproduction Steps and Sample Code

<View>
        <Text h4 style={styles.cardHeader}>Pick a slot</Text>
        <List >{
            slots.map(item => (
                <ListItem
                    key={item}
                    title={item}
                    onPress={() => selectSlot(item)}
                />))
        }
        </List>
    </View>

Most helpful comment

@mateen-hussain

<ListItem
  …
  containerStyle={{ borderBottomColor: 'red' }}
/>

All 3 comments

Hey @mateen-hussain, this is related to the simulator. You can see that if you scroll slowly these shades of grey will change slightly. Try to grow your simulator, or to test on a real device, you shouldn't have this issue 👌

Thanks. How do I change its color.

@mateen-hussain

<ListItem
  …
  containerStyle={{ borderBottomColor: 'red' }}
/>
Was this page helpful?
0 / 5 - 0 ratings

Related issues

xiaoneng picture xiaoneng  Â·  3Comments

kyleatblackfoot picture kyleatblackfoot  Â·  3Comments

iRoachie picture iRoachie  Â·  3Comments

jackcbrown89 picture jackcbrown89  Â·  3Comments

pacozaa picture pacozaa  Â·  3Comments