Skip to content
Snippets Groups Projects
Commit a53cbf5a authored by Aayush's avatar Aayush
Browse files

changes

parent 995eaf30
No related branches found
No related tags found
1 merge request!3Main product
......@@ -35,12 +35,56 @@ class HomeScreen extends StatelessWidget {
height: 150,
decoration: BoxDecoration(
image: DecorationImage(
fit: BoxFit.cover,
image: NetworkImage(
''),
'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQi0Xg-k622Sbztlrb-L1o1CAla3zCbVc2lUw&usqp=CAU'),
),
color: Colors.red,
borderRadius: BorderRadius.circular(10),
),
child: Row(
children: [
Expanded(
child: Container(
child: Column(
children: [
Padding(
padding:
const EdgeInsets.only(right: 120, bottom: 10),
child: Container(
height: 40,
width: 100,
decoration: BoxDecoration(
color: Color(0xffd1ad17),
borderRadius: BorderRadius.only(
bottomRight: Radius.circular(50),
bottomLeft: Radius.circular(50),
),
),
child: Center(
child: Text(
'Vegi',
style: TextStyle(
fontSize: 17,
color: Colors.white,
shadows: [
BoxShadow(
color: Colors.green,
blurRadius: 10,
offset: Offset(3, 3))
],
),
),
),
))
],
)),
),
Expanded(
child: Container(),
),
],
),
)
]),
));
......
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