Does anyone know how to create new custom components that can act as custom form components that accept variables like the existing base widgets?
Use cases I am aiming for is the ability to create a new kind of number input that acts as a logarithmic slider: i.e. has a numerical output of a double, and updates in increments that increase exponentially as you scroll along: 1 -> 10 -> 100, instead of 1 -> 2 -> 3.
Another use case would be a rolling number picker that acts like a date picker, but outputs a double and scrolls with acceleration at higher values.
Custom components currently do not seem to enable the creation of widgets that can act as forms, only arrangements of read only widgets.
If anyone has been able to get something like this working, it would be great if you could explain how it was done, or if this is not currently possible when it could be added into the roadmap as this would massively expand the scope of what can be built in Flutterflow with minimal change required.