refactor: linting de widgets de layout y utilidades
Ajustes de estilo/linting en los helpers centered* de layout, appIntroPage, roundedButton, secretLoader y utils (refactor pendiente).
This commit is contained in:
parent
9b0fe987f8
commit
51fe8c6431
15 changed files with 141 additions and 126 deletions
|
|
@ -2,15 +2,15 @@ import 'package:flutter/material.dart';
|
|||
|
||||
abstract class AbstractCenteredRow extends Row {
|
||||
AbstractCenteredRow({
|
||||
Key key,
|
||||
TextDirection textDirection,
|
||||
TextBaseline textBaseline,
|
||||
Key? key,
|
||||
TextDirection? textDirection,
|
||||
TextBaseline? textBaseline,
|
||||
mainAxisAlignment,
|
||||
List<Widget> children: const <Widget>[],
|
||||
List<Widget> children = const <Widget>[],
|
||||
}) : super(
|
||||
children: children,
|
||||
key: key,
|
||||
mainAxisAlignment: mainAxisAlignment,
|
||||
mainAxisAlignment: mainAxisAlignment ?? MainAxisAlignment.start,
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
textDirection: textDirection,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue