Premdas Vm

Results 10 comments of Premdas Vm

Hi @hossein-zare , Sorry if my description confused you. basically what I was trying do is, I've a dropdown picker on one of my screen, and when I navigate to...

@hossein-zare Thanks `onChangeValue` worked two time for me then it didn't it works randomly, but the `onSelectItem` works like a charm. ```JSX { console.log('value', value); }} onSelectItem={item => { console.log('selected',...

@hossein-zare My workaround for default value while the screen mounts ```jsx useFocusEffect( React.useCallback(() => { setValue(id); }, []), ); ```

i'm having the same issue, it works sometime. Anyone came up with a solution for this?

I've ran into the same issue, is there a work around? ```ts const SubPartQuestionZodSchema = QuestionSchema.extend({ Type: z.literal(QuestionTypes.SUB_PART), Questions: z.array(z.lazy(() => QuestionZodSchema)), }); export const QuestionZodSchema = z.discriminatedUnion("Type", [ FillInTheBlankQuestionZodSchema,...

Having the same issue with dropdown, any solutions ?

I'm having the same issue, any solutions?

Any update on this PR?

@BigDaddy-Zephyr I was doing the same thing with my value, I changed that to something like `["Foo"]` now it's working like you said. Thanks for the help mate. But theoretically...