We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm using the v1.0.0-rc07, compose multiplatform (1.7.0-beta02) on Android, I'm observing the interactionSource of the editor.
interactionSource
When I'm moving/dragging the cursor, the event PressInteraction.Release is triggered.
PressInteraction.Release
I have something like this :
val richTextState = rememberRichTextState() val interactionSource = remember { MutableInteractionSource() } LaunchedEffect(interactionSource) { interactionSource.interactions.collect { interaction -> println(interaction) } } RichTextEditor( interactionSource = interactionSource, state = richTextState )
The text was updated successfully, but these errors were encountered:
Hi, Thanks for reporting this issue. I will check it. Currently, the library is using Compose 1.6.11 so it maybe just an issue with versions.
Sorry, something went wrong.
Also, I'm trying the dev branch and future version of compose 1.7.0, the Editor is much instable on iOS than the 1.6.*.
Yes, that's the reason. I'm using your editor with iOS and using the latest version of compose fix/add some issues, beta issues :).
the rc1 of compose 1.7.0 is very close.
Hopefully, I will start publishing releases for Compose alpha/beta/rc versions
No branches or pull requests
Hi,
I'm using the v1.0.0-rc07, compose multiplatform (1.7.0-beta02) on Android, I'm observing the
interactionSource
of the editor.When I'm moving/dragging the cursor, the event
PressInteraction.Release
is triggered.I have something like this :
The text was updated successfully, but these errors were encountered: