Quantcast
Channel: Recent Questions - Stack Overflow
Viewing all articles
Browse latest Browse all 18005

How to center text in container?

$
0
0

The code I wrote places text in container in the center of the first line and I need it to be in the center of the full square (middle line).

Column(    mainAxisAlignment: MainAxisAlignment.center,    children: <Widget>[      textFormfield1('name', Controller),      Row(          mainAxisAlignment: MainAxisAlignment.start,          children: <Widget>[            Text('Add at 3 images',                textAlign: TextAlign.start,                style: TextStyle(                    //color: Colors.grey[400],                    fontWeight: FontWeight.bold,                    fontSize: 16))          ]),      Row(        mainAxisAlignment: MainAxisAlignment.center,        children: <Widget>[          Container(          child: Text(text,                  textAlign: TextAlign.center),          width: 100,          height: 100,          decoration: BoxDecoration(            shape: BoxShape.circle,            border: Border.all(color: Colors.yellow)));          )),

Pic of what happens and what I need: https://i.sstatic.net/UGbXX.jpg


Viewing all articles
Browse latest Browse all 18005


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>