Modifier for centering widgets.
Center center({ double? widthFactor, double? heightFactor, }) { return Center( widthFactor: widthFactor, heightFactor: heightFactor, child: this, ); }