Brian Rook
Brian Rook
I will note that I get the same behavior with values in different color formats. There is no effect with using `'rgb(255, 255, 255)'`, `'#FFF'` or `'#FFFFFF'`
> > > I have this > > > Node Version: `18.15.0` > > > NPM Version: `9.5.0` > > > > > > @prateek-somaiya try updating npm version and...
Thank you @kclauhk , this solution works for many videos. I am having a problem with a video like this, though: https://www.youtube.com/watch?v=HI7mTIxNotQ The option I get for downloading is `-f...
This can be resolved by changing these method signatures to the following https://github.com/fateh999/react-native-paper-dropdown/blob/master/src/DropDown.tsx#L113-L141 ``` typescript const isActive = useCallback( (currentValue: any) => { if (multiSelect) { return value.split(',').indexOf(currentValue) !== -1;...
@fateh999 I'm not able to create a branch so that I can start the PR process to fix this breaking bug - what is the appropriate way to go about...
Just found that it also needs a split on this line: https://github.com/fateh999/react-native-paper-dropdown/blob/master/src/DropDown.tsx#L101 `.filter((_) => value.split(',').indexOf(_.value) !== -1)`