feat: home view, portfolio view, invest type view

This commit is contained in:
2024-02-05 15:49:02 +07:00
parent 5ee2b8f1f1
commit 0e7ad81345
17 changed files with 1190 additions and 7 deletions

View File

@@ -0,0 +1,24 @@
import 'package:cims_apps/application/theme/color_palette.dart';
import 'package:flutter/cupertino.dart';
class TextTitle extends StatelessWidget {
final String title;
final Color color;
const TextTitle({
Key? key,
required this.title,
required this.color,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Text(
title,
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w700,
color: color,
),
);
}
}