Relative Content

Tag Archive for flutterflutter-text

Unable to align text left

Widget cardText(String text) { return FittedBox( fit: BoxFit.contain, child: Text( textAlign: TextAlign.left, text, style: const TextStyle( fontWeight: FontWeight.w600, color: Colors.grey, fontFamily: “Myriad”), ), ); } I want to align this textWidget left and it is coverd with a custom widget resizable widget which allow me to move it and resize it. And BoxFit.contain is the […]