Skip to content

Commit

Permalink
Merge pull request #133 from Alpha-Damyo/Feature/#125-UpdateProfileSc…
Browse files Browse the repository at this point in the history
…reen

change assets
  • Loading branch information
choichangyeon authored Jun 5, 2024
2 parents f0f2b37 + 3dcd775 commit 21209d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/screens/home/mypage/in_mypage/achievement_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Widget badgeList() {
children: [
SizedBox(
child: Image.asset(
'assets/achievementScreen/contribution_${contributionPoint[index]}.png'),
'assets/icons/achievement_screen/contribution_${contributionPoint[index]}.png'),
),
],
),
Expand Down Expand Up @@ -616,7 +616,7 @@ Widget explane() {
borderRadius: BorderRadius.circular(30),
),
),
child: Image.asset('assets/achievementScreen/lock.png'),
child: Image.asset('assets/icons/achievement_screen/lock.png'),
),
],
),
Expand Down
4 changes: 2 additions & 2 deletions lib/screens/home/mypage/in_mypage/updateprofile_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class _UpdateprofileState extends State<UpdateprofileScreen> {
),
child: _profileImage == null
? Image.asset(
'assets/updateprofileScreen/profile.png',
'assets/icons/updateprofile_screen/profile.png',
fit: BoxFit.cover,
)
: Image.file(
Expand All @@ -122,7 +122,7 @@ class _UpdateprofileState extends State<UpdateprofileScreen> {
await getImage(ImageSource.gallery);
},
icon: Image.asset(
'assets/updateprofileScreen/camera.png',
'assets/icons/updateprofile_screen/camera.png',
fit: BoxFit.fill,
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class _SpecialDaysState extends State<SpecialDays> {
clipBehavior: Clip.antiAlias,
decoration: BoxDecoration(color: Colors.white),
child:
Image(image: AssetImage('assets/statisticsScreen/specialStatistics/test.png')),
Image(image: AssetImage('assets/icons/statistics_screen/special_statistics/test.png')),
),
const SizedBox(width: 16),
const Text.rich(
Expand Down Expand Up @@ -78,7 +78,7 @@ class _SpecialDaysState extends State<SpecialDays> {
context.push('/special_day');
},
icon: const ImageIcon(
AssetImage('assets/statisticsScreen/specialStatistics/go.png'),
AssetImage('assets/icons/statistics_screen/special_statistics/go.png'),
),
),
],
Expand Down

0 comments on commit 21209d2

Please sign in to comment.