Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ketan-sharmaa committed Jun 27, 2024
1 parent 466f765 commit cb34019
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions lib/screens/project_description_map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -159,15 +159,14 @@ class ProjectDescriptionMAP extends StatelessWidget {
child: Stack(
alignment: Alignment.center,
children: [

Image.asset(
project['thumbnail'],
height: 50.h,
),
Image(
image: const AssetImage(
'mockups/phone.png',
),
height: 50.h,
image:const AssetImage( 'assets/mockups/phone.png',),
height: 50.h,
),
],
),
Expand All @@ -190,12 +189,11 @@ class ProjectDescriptionMAP extends StatelessWidget {
project['thumbnail_web'],
height: 50.h,
),
Image(
image: const AssetImage(
'mockups/laptop.png',
),
height: 50.h,
),
Image(
image:const AssetImage( 'assets/mockups/laptop.png',),
height: 50.h,
),

],
);
}),
Expand Down

0 comments on commit cb34019

Please sign in to comment.