I need to center a Text widget inside a Stack widget.
This is my code for the Text widget:
Positioned(
top: alturaFondo + alturaAvatar/2,
child: Padding(
padding: const EdgeInsets.all(8.0),
child:
Text("username", textAlign: TextAlign.center, style: TextStyle(fontSize: 18,color: Colors.black54),)
),
),
I have tried putting the Text inside an Align widget, but not centering it either.