Skip to content

Commit b85bc69

Browse files
committed
fix image bug
1 parent ac604ef commit b85bc69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/views/screens/profile.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class _ProfileState extends State<Profile> {
2525
SizedBox(height: 60),
2626
CircleAvatar(
2727
backgroundImage: AssetImage(
28-
"assets/cm${random.nextInt(10)}.jpeg",
28+
"assets/images/cm${random.nextInt(10)}.jpeg",
2929
),
3030
radius: 50,
3131
),
@@ -92,7 +92,7 @@ class _ProfileState extends State<Profile> {
9292
return Padding(
9393
padding: EdgeInsets.all(5.0),
9494
child: Image.asset(
95-
"assets/cm${random.nextInt(10)}.jpeg",
95+
"assets/images/cm${random.nextInt(10)}.jpeg",
9696
fit: BoxFit.cover,
9797
),
9898
);

0 commit comments

Comments
 (0)