feat: profile page

This commit is contained in:
2024-02-29 17:14:05 +07:00
parent d1adfd2ab0
commit eb99ad9d7f
18 changed files with 220 additions and 27 deletions

View File

@@ -5,17 +5,20 @@ class TextTitle extends StatelessWidget {
final String title;
final Color? color;
final double? fontSize;
final TextAlign? textAlign;
const TextTitle({
Key? key,
required this.title,
this.color,
this.fontSize,
this.textAlign,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Text(
title,
textAlign: textAlign,
style: TextStyle(
fontSize: fontSize ?? 20,
fontWeight: FontWeight.w700,