rafaelmotta / react-native-tag-select

🏷 A simple tag component to act as radio button / checkbox
156 stars 43 forks source link

How to add a Show More Tag to show added datas #14

Open iamadityaaz opened 5 years ago

iamadityaaz commented 5 years ago

A Show More Tag to show added data on selected. How can i do it, anybody please help me, i tried doing by doing -

componentDidMount () {

const value = {}

var toRemove = 'Show More';
var index = this.props.value.indexOf(toRemove);
this.props.value.splice(index, 1);

this.props.value.forEach((val) => {
  value[val[[this.props.keyAttr]] || val] = val
})

this.setState({ value })
} 

But failed