fix: content padding text field

This commit is contained in:
2024-02-07 15:54:53 +07:00
parent 9475767021
commit 59e6e82d13
8 changed files with 162 additions and 108 deletions

View File

@@ -122,11 +122,20 @@ class _PortofolioViewState extends State<PortofolioView> {
),
const Column(
children: [
Text('Total Mutual Fund'),
Text('Total Mutual Fund',
style: TextStyle(
fontWeight: FontWeight.w600,
fontSize: 18,
color: ColorPalette.slate400
),
),
Text('10',
style: TextStyle(
fontSize: 44,
fontWeight: FontWeight.w700)),
style: TextStyle(
fontSize: 44,
fontWeight: FontWeight.w700
)
)
,
],
)
]),