Ajustes de estilo/linting en los helpers centered* de layout, appIntroPage, roundedButton, secretLoader y utils (refactor pendiente).
17 lines
481 B
Dart
17 lines
481 B
Dart
import 'package:flutter/material.dart';
|
|
import 'centeredColumn.dart';
|
|
import 'centeredRow.dart';
|
|
|
|
class CenteredMaxWidget extends CenteredColumn {
|
|
CenteredMaxWidget({
|
|
Key? key,
|
|
TextDirection? textDirection,
|
|
TextBaseline? textBaseline,
|
|
List<Widget> children = const <Widget>[],
|
|
}) : super(
|
|
children: <Widget>[new CenteredRow(children: children)],
|
|
key: key,
|
|
textDirection: textDirection,
|
|
textBaseline: textBaseline,
|
|
);
|
|
}
|