Space between words on RTL #579
Replies: 2 comments
-
Yes, this will be very helpful to me too ! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Could you open this issue on https://github.com/readium/readium-css instead? We rely on this component for that. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Could any one provide any additional references or solutions for adjusting word-spacing in RTL layout?
As it's mention it works on LTR layout only.
/** * Space between words. * * Only effective when: * - the publication is reflowable * - the layout is LTR */ val wordSpacing: RangePreference<Double> = RangePreferenceDelegate( getValue = { preferences.wordSpacing }, getEffectiveValue = { state.settings.wordSpacing ?: 0.0 }, getIsEffective = ::isWordSpacingEffective, updateValue = { value -> updateValues { it.copy(wordSpacing = value) } }, supportedRange = 0.0..1.0, progressionStrategy = DoubleIncrement(0.1), valueFormatter = percentFormatter(), )
Beta Was this translation helpful? Give feedback.
All reactions