1
1
import 'package:flutter/material.dart' ;
2
2
import 'package:flutter_wallet_app/src/theme/light_color.dart' ;
3
- import 'package:flutter_wallet_app/src/theme/theme.dart' ;
4
3
import 'package:flutter_wallet_app/src/widgets/balance_card.dart' ;
5
4
import 'package:flutter_wallet_app/src/widgets/bottom_navigation_bar.dart' ;
6
5
import 'package:flutter_wallet_app/src/widgets/title_text.dart' ;
7
6
import 'package:google_fonts/google_fonts.dart' ;
8
7
9
8
class HomePage extends StatefulWidget {
10
- HomePage ({Key key}) : super (key: key);
9
+ HomePage ({Key ? key}) : super (key: key);
11
10
12
11
@override
13
12
_HomePageState createState () => _HomePageState ();
@@ -24,7 +23,7 @@ class _HomePageState extends State<HomePage> {
24
23
SizedBox (width: 15 ),
25
24
TitleText (text: "Hello," ),
26
25
Text (' Janth,' ,
27
- style: GoogleFonts .muli (
26
+ style: GoogleFonts .mulish (
28
27
fontSize: 18 ,
29
28
fontWeight: FontWeight .w600,
30
29
color: LightColor .navyBlue2)),
@@ -75,8 +74,8 @@ class _HomePageState extends State<HomePage> {
75
74
),
76
75
),
77
76
Text (text,
78
- style: GoogleFonts .muli (
79
- textStyle: Theme .of (context).textTheme.display1 ,
77
+ style: GoogleFonts .mulish (
78
+ textStyle: Theme .of (context).textTheme.headline4 ,
80
79
fontSize: 15 ,
81
80
fontWeight: FontWeight .w600,
82
81
color: Color (0xff76797e ))),
@@ -120,7 +119,7 @@ class _HomePageState extends State<HomePage> {
120
119
borderRadius: BorderRadius .all (Radius .circular (10 )),
121
120
),
122
121
child: Text ('-20 MLR' ,
123
- style: GoogleFonts .muli (
122
+ style: GoogleFonts .mulish (
124
123
fontSize: 12 ,
125
124
fontWeight: FontWeight .bold,
126
125
color: LightColor .navyBlue2))),
0 commit comments