Is there a reason why `AnnotatedString.Builder` do...
# compose
m
Is there a reason why
AnnotatedString.Builder
does not support
delete
,
replace
etc like
SpannableStringBuilder
does? I’m often stuck with this when migrating code from Android to commonMain. Would also be very useful to have access to the underlying text
String
. This property is a
StringBuilder
but I don’t see why it couldn’t be exposed as a
String
so we can do simple checks like what the last
Char
is.