mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-17 02:25:16 +00:00
make the UI and link it with its blocs
This commit is contained in:
@ -21,7 +21,7 @@ class CurrentBalanceWidget extends StatelessWidget {
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
flex: 7,
|
||||
flex: 75,
|
||||
child: Padding(
|
||||
padding: EdgeInsets.all(12),
|
||||
child: Column(
|
||||
@ -31,6 +31,7 @@ class CurrentBalanceWidget extends StatelessWidget {
|
||||
child: Text(
|
||||
'Current Balance',
|
||||
style: TextStyle(
|
||||
color: ColorsManager.blackColor,
|
||||
fontWeight: FontWeight.bold,
|
||||
fontSize: 17,
|
||||
),
|
||||
@ -40,6 +41,7 @@ class CurrentBalanceWidget extends StatelessWidget {
|
||||
),
|
||||
Expanded(
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
@ -47,7 +49,7 @@ class CurrentBalanceWidget extends StatelessWidget {
|
||||
style: TextStyle(
|
||||
color: ColorsManager.blueColor1,
|
||||
fontWeight: FontWeight.bold,
|
||||
fontSize: 25),
|
||||
fontSize: 50),
|
||||
),
|
||||
SizedBox(
|
||||
width: 5,
|
||||
@ -65,7 +67,7 @@ class CurrentBalanceWidget extends StatelessWidget {
|
||||
),
|
||||
)),
|
||||
Expanded(
|
||||
flex: 3,
|
||||
flex: 25,
|
||||
child: Container(
|
||||
alignment: Alignment.center,
|
||||
padding: EdgeInsets.only(left: 15),
|
||||
|
Reference in New Issue
Block a user