'Align text based on bottom line like textAlign: TextAlign.bottom feature

screenshot Hi community, as you can see I would like to align text based on this red line, so if there is more text, they should go up, now i tried `textAlign: TextAlign.end // no align bottom? , but it seems not work for my case, plz help,Thank you!



Solution 1:[1]

try this code:

Column(
  children: [
    Flexible(
      child: SizedBox(height: MediaQuery.of(context).size.height,),
    ),
    Text(...);
  ],
);

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 liam spiegel