skip to Main Content

How to Align RichText to the left in Dialog? Flutter

I want to make RichText align to the left. I tried use Container, Row, Column, Flexible, Expanded widgets, but nothing helped me. Future getAuthorsDialog(BuildContext context) { return showDialog<String>( context: context, builder: (BuildContext context) => Dialog( insetPadding: const EdgeInsets.symmetric(vertical: 90.0), child:…

VIEW QUESTION
Back To Top
Search