Код: Выделить всё
child: Row (children: [
Padding(
padding: const EdgeInsets.all(8),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text("08:00"),
//etc.
],),
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween, //this does not work
children: [
Text("Monday", textAlign: TextAlign.center),
//etc.
],),
],),
Подробнее здесь: https://stackoverflow.com/questions/798 ... -no-errors