Bug Report
I am not getting the radio input value when the Field type is radio. I am not even sure if this is the correct way to handle radio inputs using RFF.
I should receive value in the input prop to set the checked value on the radio inputs.
https://codesandbox.io/s/nostalgic-tdd-vy2r1
Latest of both libs and Chrome 75 on Windows 10.
The library does all that for you. (See Simple Example) Handling it yourself is _possible_, but complicated. If you use one Field component per radio button, with the value prop, things will get a lot easier. When you use type="radio", RFF generates a checked boolean for you.
Great sandbox, btw. It helps _immensely_ in understanding what a lib consumer is trying to do. 馃憤
Updated link to example : https://final-form.org/docs/react-final-form/examples/simple
could anyone point me to the simple example? its gone again
This should be in the documentation: https://codesandbox.io/s/kind-sky-pqoot?fontsize=14
Most helpful comment
The library does all that for you. (See Simple Example) Handling it yourself is _possible_, but complicated. If you use one
Fieldcomponent per radio button, with thevalueprop, things will get a lot easier. When you usetype="radio", RFF generates acheckedboolean for you.