vishaldhanotiya / react-native-modal-picker

This is a cross-platform picker with search bar for react native support both platform IOs and android
https://www.npmjs.com/package/rn-modal-picker
44 stars 18 forks source link

Add Horizontal Line #14

Closed edoofx closed 4 years ago

edoofx commented 4 years ago

how to add horizontal line for each item ?

trying add underline text at this style :

  listTextViewStyle: {
    color: '#000',
    marginVertical: 15,
    flex: 0.9,
    marginLeft: 20,
    marginHorizontal: 10,
    textAlign: 'left',
},

but only underline at text, not item

vishaldhanotiya commented 4 years ago

Hii @edoofx,

We added itemSeparatorStyle props for a horizontal line between items

 itemSeparatorStyle:{
    height: 1,
    width: "90%",
    alignSelf: "center",
    backgroundColor: "#D3D3D3"
  }

Thank you for the report to feature