comment_tree icon indicating copy to clipboard operation
comment_tree copied to clipboard

doesnt support RTL

Open mohammedali933 opened this issue 4 years ago • 2 comments

the library doesnt support RTL as shown in the image: See here

mohammedali933 avatar Sep 15 '21 14:09 mohammedali933

for me i solved it by going to

.pub-cache/hosted/pub.dartlang.org/comment_tree-0.3.0/lib/widgets/comment_child_widget.dart

and modifying final EdgeInsets padding = EdgeInsets.only( left: avatarRoot!.width + 8.0, bottom: 8, top: 8, ); to

final EdgeInsets padding = EdgeInsets.only( left: avatarRoot!.width + 8.0, bottom: 8, top: 8, right: avatarRoot!.width + 8.0, );

abdalkhalik avatar Oct 09 '21 15:10 abdalkhalik

this worked for me .. thanks

Obada2020 avatar Apr 07 '23 14:04 Obada2020