comunes-flutter/lib/layout/centeredSpaceAroundColumn.dart
vjrj 51fe8c6431 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).
2026-07-12 23:26:43 +02:00

17 lines
515 B
Dart

import 'package:flutter/material.dart';
import 'abstractCenteredColumn.dart';
class CenteredSpaceAroundColumn extends AbstractCenteredColumn {
CenteredSpaceAroundColumn({
Key? key,
TextDirection? textDirection,
TextBaseline? textBaseline,
List<Widget> children = const <Widget>[],
}) : super(
children: children,
key: key,
mainAxisAlignment: MainAxisAlignment.spaceAround,
textDirection: textDirection,
textBaseline: textBaseline,
);
}