compose-richtext icon indicating copy to clipboard operation
compose-richtext copied to clipboard

A collection of Compose libraries for advanced text formatting and alternative display types.

Results 32 compose-richtext issues
Sort by recently updated
recently updated
newest added

From [this comment](https://github.com/halilozercan/compose-richtext/pull/1#discussion_r512120261): > Maybe the theme should allow you to specify providers for modifiers for table cells? This could also be used to implement stuff like zebra striping.

enhancement

As a rule, standard composables don't clip themselves, and I'd like to follow that pattern here as well if possible. Realized [here](https://github.com/halilozercan/compose-richtext/pull/1#discussion_r510986605).

bug
enhancement

Need to use `SubcomposeLayout` to compose the list markers after composing the children to get the row count.

enhancement

It currently wraps children in a `Column`, but now that `Arrangement.spacedBy` exists, there's no need to do that. Not wrapping in a column allows long documents to be rendered using...

enhancement

First, it shouldn't take an explicit list, just a single children slot. Second, a composable called something like `ListItem` should be introduced. This composable will be scoped to the list...

enhancement

This is attempts to handle the link colour averaging mentioned in bug #88

When you check out and try to build, you get this error: "The project is using an incompatible version (AGP 7.4.0-alpha01) of the Android Gradle plugin. Latest supported version is...

Currently the library parses markdown internally, but there are several issues with it: - The parsing is asynchronous without any callbacks, which causes many problems. For example, it's not possible...

Hello! There seems to be a visual bug when there is en empty item in the list, for the text after the list. For example ```kotlin MaterialRichText(style = null) {...

Recently I have been working on my project and have to use markdown for my Android project and come across your Library. The issue I faced when I turn my...