Ren
Ren
All ids must be unique. This has been discussed a bit here https://github.com/renrizzolo/react-native-sectioned-multi-select/issues/33, although there was no real consensus, and fixing this would be a breaking change.
I'm not entirely sure what this is aiming to do. Can you add a screenshot? Also, what happens if there are no icons on any items?
great! I think this should fall back to the `displayKey` prop when `subItemDisplayKey` isn't present though.
ah sorry, I did. There are a few things that would break in its current state. `displayKey` is used for finding the items (and sub items) when displaying the selected...
nice, thanks for this. I'm thinking it might make more sense for the prop to be a function that receives the item and is expected to return a string, so...
I would encourage you to use the `renderSelectText` function instead. I will change it so you can return a component or a string, so you can style it how you...
Sorry, I don't understand why the fix discussed in the linked PR doesn't work? i.e: use `subItemsFlatListProps` to add props to the FlatList.
Thanks for this, this isn't a prop of the component like everything in that table though, it's a property of the item itself. It needs to be put somewhere else...
Good catch, thanks. Can you add the fix to `RowSubItem` as well?
Hey, thanks for your PR! I think for backwards compatibility it should look like this: - add new prop `selectedSubItemIconComponent` - existing `selectedIconComponent` is used on the parent - if...