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...).

Home Page:https://pub.dev/packages/rate_my_app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TextDirection.rtl. apply right direction fot message text.

dryasbk opened this issue · comments

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

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,
),
),

Just use a custom contentBuilder 😉