feat: submit data bank account

This commit is contained in:
2024-02-15 19:23:57 +07:00
parent 4bad9cd18c
commit 23d189c288
17 changed files with 505 additions and 315 deletions

View File

@@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
class TextCaption extends StatelessWidget {
final String title, subtitle;
final TextAlign? textAlignSubtitle;
final TextAlign? textAlign, textAlignSubtitle;
final CrossAxisAlignment? crossAxisAlignment;
const TextCaption({
Key? key,
@@ -11,6 +11,7 @@ class TextCaption extends StatelessWidget {
this.subtitle = '',
this.textAlignSubtitle,
this.crossAxisAlignment,
this.textAlign,
}) : super(key: key);
@override
@@ -23,6 +24,7 @@ class TextCaption extends StatelessWidget {
children: [
Text(
title,
textAlign: textAlign ?? TextAlign.start,
style: const TextStyle(
fontSize: 24,
fontWeight: FontWeight.w700,