How to create a Slider to set a float value, and an EditText reflecting that float value, leave both of them connected to a ViewModel object float value, that is updated on the run. The float value should be possible to set both from the Slider and the EditText box.
I find it cumbersome to
- enter the decimal in the float number in the EditText box (Converter issue converting the float to a string)

The solution I found was to 1) skip the Converter and use a BindingAdapter and InverseBindingAdapter to handle the float value in the EditText android:text field, and 2) occasionally avoid updating the setText in the BindingAdapter (value passed from view model, to setText in the VIEW) - this will leave a half written float (string) intact.
essense from the xml file:
This is included to display the 2 way binder float connection to the model object.
Essence from my SliderAdapter.kt file:
This binder will process the Slider value set/get in the xml .
The following Binder will handle the value set/get in the EditText, before value is passed to the model object. Avoid updating the text in the gui when not needed is crucial.
And finally, if anyone is still with me, the model kotlin file:
Voila, its now possible to enter a half written float: