Skip to content

Commit

Permalink
Update main_page.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
JAICHANGPARK committed Mar 24, 2020
1 parent d251b62 commit 352e675
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions lib/ep399_digital_walet_app/main_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -300,29 +300,32 @@ class _MyWalletHomeState extends State<MyWalletHome> {
padding: const EdgeInsets.only(left: 8),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[Text("Dreamwalker",
style: GoogleFonts.montserrat(
fontWeight: FontWeight.bold,
color: Colors.indigo
),), Text("20 March",style: TextStyle(
fontSize: 12,
color: Colors.grey
),)],
children: <Widget>[
Text(
"Dreamwalker",
style:
GoogleFonts.montserrat(fontWeight: FontWeight.bold, color: Colors.indigo),
),
Text(
"20 March",
style: TextStyle(fontSize: 12, color: Colors.grey),
)
],
),
),
Spacer(),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text("-\$50.00",style: GoogleFonts.montserrat(
fontSize: 10,
fontWeight: FontWeight.bold,
color: Colors.indigo
),),
Text("-\$5479",style: GoogleFonts.montserrat(
fontSize: 10,
color: Colors.grey
),),
Text(
"-\$50.00",
style: GoogleFonts.montserrat(
fontSize: 10, fontWeight: FontWeight.bold, color: Colors.indigo),
),
Text(
"-\$5479",
style: GoogleFonts.montserrat(fontSize: 10, color: Colors.grey),
),
],
)
],
Expand Down

0 comments on commit 352e675

Please sign in to comment.