please check my code and correct me!
my language changed but the text shown in the same position only just language converted but does not support RTL.
Align(
alignment: Alignment.centerRight,
child: TextButton(
onPressed: () {
Navigator.of(context).push(MaterialPageRoute(
builder: (context) => MyForgot()));
},
child: Text(
'forgot'.tr, //title
style: TextStyle(color: Colors.white, fontSize: 16),
),
),
),