Skyost / RateMyApp

This plugin allows to kindly ask users to rate your app if custom conditions are met (eg. install time, number of launches, etc...).
https://pub.dev/packages/rate_my_app
MIT License
273 stars 111 forks source link

TextDirection.rtl. apply right direction fot message text. #114

Closed dryasbk closed 2 years ago

dryasbk commented 2 years ago

When trying to write in Arabic text, even with textAlignment.right the ! or . will be in a wrong position.

Describe the solution you'd like Adding the TextDirection option

Describe alternatives you've considered add TextDirection either TextDirection.rtl or TextDirection.lft

Additional context also if possible add a Button style option

dryasbk commented 2 years ago

Just to edit dialog.dart file at line 78 : child: Padding( padding: dialogStyle.messagePadding, child: Text( message, textDirection: TextDirection.rtl, # this line to message text style: dialogStyle.messageStyle, textAlign: dialogStyle.messageAlign, ), ),

Skyost commented 2 years ago

Just use a custom contentBuilder :wink: