I have three text- named as News-Title, News-date, and News-description. I want News title alignment as left, below to news-title want news-date right aligned and below to news-date wants news-description with center alignment.
please suggest proper solution…..
>Solution :
Try below code hope its help to you. just set Alignment in your column refer layout and Align-class
Column(
crossAxisAlignment: CrossAxisAlignment.start,//add this line if you used column widget in your code
children: [
Text('News-Title'),
Text('News-date'),
Text('News-description'),
],
),
