Answers for "flutter change text direction in table"

11

flutter column text direction

Column(  
        crossAxisAlignment: CrossAxisAlignment.center,
        mainAxisAlignment: MainAxisAlignment.center,
        verticalDirection: VerticalDirection.down,
        textBaseline: TextBaseline.alphabetic,
        textDirection: TextDirection.ltr,
        mainAxisSize: MainAxisSize.max,
        children: [
          Text('Column 1'),
          Text('Column 2')
        ],
      ),
Posted by: Guest on August-30-2021

Code answers related to "flutter change text direction in table"

Browse Popular Code Answers by Language