I am trying to create an add-button, where the icon inside is just a simple '+'-character, but for some reason it just sits at the bottom of the container instead of in the center
Troubling text in a container
This is the structure if needed, where I have my Text widget inside a Center widget, and also the textAlign set to TextAlign.center.
Underneath I have provided all the code leading up to the Text widget
Column(
children: [
...,
Expanded(
child: Row(
children: [
Container(
width: 80,
alignment: Alignment.topCenter,
child: Column(
children: [
Padding(
padding: const EdgeInsets.symmetric(vertical: 5, horizontal: 10),
child: Container(
width: 60,
height: 60,
decoration: const BoxDecoration(
color: Colors.amber,
borderRadius: BorderRadius.all(Radius.circular(24))
),
child: const Center(
child: Text("+",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 70,
),
),
),
),
),
],
),
),
...,
],
),
)
],);
Note this is my first time using flutter.