티스토리 뷰
우선 플젝에 images 디렉토리를 만들어줍니다. 그리고 여기 넣고 싶은 이미지파일들을 넣어주세요
(저는 이 안에 tabbar라는 디렉터리도 하나 더 만들었어요)
아래 하이라이트한 형식의 이미지들을 넣을 수 있다고 합니다-!
그 다음에 pubspec.yaml에 가서
flutter 밑에 네모 친 것 처럼 이미지 디렉토리를 명시해주세요
문서에 보면 이렇게 해주는 것은 이 디렉토리에 있는 모든 이미지들을 include하겠다!! 하는 거라고 합니다.
이렇게 한땀한땀 이미지 path들을 넣어줄 수 도 있는데, 이것은 너무 귀찮으니까 디렉토리로 해줍니다.
그러면 pub get이 뜨는데 이걸 누르거나
아니면 콘솔 > 터미널 누르고 아래 명령어를 입력해주세요
flutter pub get
근데 iOS에서는 이미지를 잘 찾는데, 안드로이드에서는 에러가 나서 (이상하다,,)
저는 이렇게 서브디렉토리도 명시해주게 바꿨습니다.
이제 아래와 같이 쓰면 안드, iOS 모두 이미지를 잘 불러옵니다..!
Image.asset("images/tabbar/settings.png", width: 30, height: 30, color: MyColor.black)
저는 여기 이미지들로 tabBar icon을 지정해줬습니다,,!
List<BottomNavigationBarItem> items = [
BottomNavigationBarItem(icon: Image.asset("images/tabbar/mail_open.png", width: 30, height: 30, color: MyColor.black)),
BottomNavigationBarItem(icon: Image.asset("images/tabbar/cards.png", width: 30, height: 30, color: MyColor.black)),
BottomNavigationBarItem(icon: Image.asset("images/tabbar/settings.png", width: 30, height: 30, color: MyColor.black))
];
그리고 이렇게 activeIcon을 같이 넣어주면
List<BottomNavigationBarItem> items = [
BottomNavigationBarItem(
icon: Image.asset("images/tabbar/mail_open.png", width: 30, height: 30, color: MyColor.lightGray),
activeIcon: Image.asset("images/tabbar/mail_open.png", width: 30, height: 30, color: MyColor.black)
),
BottomNavigationBarItem(
icon: Image.asset("images/tabbar/cards.png", width: 30, height: 30, color: MyColor.lightGray),
activeIcon: Image.asset("images/tabbar/cards.png", width: 30, height: 30, color: MyColor.black),
),
BottomNavigationBarItem(
icon: Image.asset("images/tabbar/settings.png", width: 30, height: 30, color: MyColor.lightGray),
activeIcon: Image.asset("images/tabbar/settings.png", width: 30, height: 30, color: MyColor.black),
)
];
selected된 탭바에 따라 스타일을 다르게 해줄 수 도 있답니다..!
CupertinoTabBar의 activateColor, inactiveColor 라는 속성이 있긴한데,
not work해서 activeIcon으로 해줬어요
왜 안먹는지는 모르겠슴당,,
Reference
flutter.dev/docs/development/ui/assets-and-images
'🤼♀️ > Flutter' 카테고리의 다른 글
[Flutter] Provider로 앱 상태 관리하기 (0) | 2020.09.23 |
---|---|
[Flutter] Textfield에서 text가져오기 (0) | 2020.09.22 |
[Flutter] NavigationBar, TabBar의 border 없애기 (0) | 2020.09.19 |
[Flutter] Flutter의 Row와 Column + SizedWidget (0) | 2020.09.18 |
[Flutter] ListView 위젯 (0) | 2020.09.18 |
- Total
- Today
- Yesterday
- github actions
- drf custom error
- Django FCM
- DRF APIException
- ipad multitasking
- flutter build mode
- Flutter 로딩
- flutter dynamic link
- Flutter getter setter
- SerializerMethodField
- Flutter Clipboard
- flutter deep link
- 장고 Custom Management Command
- Sketch 누끼
- 플러터 얼럿
- Django Firebase Cloud Messaging
- Watch App for iOS App vs Watch App
- 플러터 싱글톤
- cocoapod
- ribs
- Dart Factory
- Django Heroku Scheduler
- METAL
- flutter 앱 출시
- PencilKit
- 장고 URL querystring
- Python Type Hint
- Flutter Spacer
- Flutter Text Gradient
- 구글 Geocoding API
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |