You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a large struct where I create a slice for. This returns a Signal and SignalSetter.
When you want to use the use_textarea_autosize like this (the example does not compile and is only for demonstration of the flow):
I have a large struct where I create a slice for. This returns a
Signal
andSignalSetter
.When you want to use the use_textarea_autosize like this (the example does not compile and is only for demonstration of the flow):
Then you see I can't set the
content
that the use provides to theset_textarea_data
. Then I thought I can use thesync_signal
option like this:But this function does not accept a
SignalSetter
as a writer function and there is nointo
as there is one for the getter.Then I thought I can set both with on the
on:input
but this causes focus loss of the input.I don't want to use the
sync_signal
but how should this be solved?The text was updated successfully, but these errors were encountered: