import 'package:flutter/material.dart'; import 'abstractCenteredRow.dart'; class CenteredSpacedEvenlyRow extends AbstractCenteredRow { CenteredSpacedEvenlyRow({ Key? key, TextDirection? textDirection, TextBaseline? textBaseline, List children = const [], }) : super( children: children, key: key, mainAxisAlignment: MainAxisAlignment.spaceEvenly, textDirection: textDirection, textBaseline: textBaseline, ); }