Derk-Jan Karrenbeld

Results 260 comments of Derk-Jan Karrenbeld

This is still a problem. Repro: ```javascript {} } mode="outlined" /> ```

Here is the patch-package patch as workaround. All it does is not apply `value` if `defaultValue` is present: ```javascript Object.prototype.hasOwnProperty.call(rest, 'defaultValue') ? undefined : this.state.value ``` Save as `patches/react-native-paper+4.11.2.patch`. Feel...

In 4.12.x new errors were introduced, which require a different patch. ```tsx // Use value from props instead of local state when input is controlled const value = isControlled ?...

@satya164 is the stale bot here bugged? I responded within hours, and definitely within 7 days of the stalebot comment https://github.com/callstack/react-native-paper/issues/2364#issuecomment-761705015, but it still closed this issue.

It's not fixed. Please reopen @raajnadar. There is a workaround, which is great, but that's undocumented, which is not.

@actuallymentor wrap it in a non-react-paper (e.g. Functional) Component. From the linked SO page: ```javascript export function withAnimated( WrappedComponent: React.ComponentType, ): ComponentType { const displayName = WrappedComponent.displayName || WrappedComponent.name ||...

> `storyofmylife.gif` `same.apng` I think the reason no one bothered to annotate it before is because this is the standard Higher-Order Component. Only information missing is how to use: ```javascript...