comment_tree
comment_tree copied to clipboard
doesnt support RTL
the library doesnt support RTL as shown in the image:

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, );
this worked for me .. thanks