Skip to content
Snippets Groups Projects
Commit 807f1a06 authored by Harshil Patel's avatar Harshil Patel
Browse files

"corrected single product viewer"

parent f62b3bd5
No related branches found
No related tags found
1 merge request!3Main product
......@@ -50,7 +50,7 @@ class SingleProduct extends StatelessWidget {
fontWeight: FontWeight.bold,
),
),
Text('$productPrice\$/50 Gram',
Text('\$$productPrice/50 Gram',
style: TextStyle(
color: Colors.grey,
)),
......@@ -66,11 +66,51 @@ class SingleProduct extends StatelessWidget {
decoration: BoxDecoration(
border:
Border.all(color: Colors.grey),
borderRadius: BorderRadius.circular(8),
),
child: Row(children: [
Expanded(child: Text(
'50 Gram',
style: TextStyle(fontSize: 11),
)),
Center(
child: Icon(
Icons.arrow_drop_down,
size: 20, color: Colors.yellow,
),
)
],),
),
)
),
SizedBox(
width: 5,
),
Container(
height: 25,
width: 50,
decoration: BoxDecoration(
border: Border.all(color: Colors.grey),
borderRadius: BorderRadius.circular(8),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.remove,
size: 15, color: Color(0xffd0b84c)),
Text(
'1',
style: TextStyle(
color: Color(0xffd0b84c),
fontWeight: FontWeight.bold,
),
),
Icon(Icons.add,
size: 15, color: Color(0xffd0b84c)
),
],),
),
],
)
),
],
)))
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment