ES-185:fix margin

fix_some_issue
Elham Rababah 5 years ago
parent 3bc9b4e64a
commit deb42d4215

@ -117,8 +117,13 @@ class OrderInfoCard extends StatelessWidget {
Row( Row(
children: [ children: [
Container( Container(
margin: EdgeInsets.only(bottom: 8, left: 20), margin: EdgeInsets.only(bottom: 12, left: 10),
color: order.statusID == 2 ? Colors.green : Colors.red, child: RoundedContainer(
// margin: EdgeInsets.only(bottom: 8, left: 20),
margin: 4,
showShadow: false,
backgroundColor:
order.statusID == 2 ? Colors.green : Colors.red,
child: Padding( child: Padding(
padding: const EdgeInsets.all(5.0), padding: const EdgeInsets.all(5.0),
child: Text( child: Text(
@ -131,6 +136,7 @@ class OrderInfoCard extends StatelessWidget {
), ),
), ),
), ),
),
], ],
) )
], ],

Loading…
Cancel
Save