Hannu-Pekka Heinäjärvi

Results 9 comments of Hannu-Pekka Heinäjärvi

I too had problems with `validateOnMount` and noticed this: https://github.com/jaredpalmer/formik/blob/master/src/Formik.tsx#L350 As a workaround, I have this hook in my form to do the validation on mount: ``` useEffect(() => {...

Yeah, `density` does not seem to get passed along. Same with `colorspace`.

Any progress with this? :)

This would be a neat feature @alexcurtis

I think we might have the same issue. If we don't specify custom `snapPoints` for ``, it looks like this: Then with for example `` it looks like this:

Sorry, I don't have the example code anymore as we went with another library but the use case is that footer's not sticky but below scrollable content and visible in...

You can use something like this: ```ts const getDynamicStep = (value?: number) => { if (!value) return 1; if (value < 10) return 1; if (value < 100) return 10;...