반응형

Developments 17

Linux에 Anaconda 설치하기

2024. 03. 23. 업데이트 된 내용입니다. 1. 최신버전 확인하기 Free Download | Anaconda Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 자신의 Linux에 맞는 설치파일 링크를 복사합니다. 2. 다운로드 [ec2-user ~]$ wget https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh --2024-03-23 02:03:51-- https://repo.anaconda.com/archive/..

Developments/Python 2024.03.23

iOS] 스크린샷 사양 (Screenshot Specifications)

6.5"가 필수이고 6.7"가 선택이지만 6.7"만 올리면 6.5"는 6.7"로 대체된다. iPhone 6.7" Display (선택 사항) - 1,290 x 2,796 iPhone 15 Pro Max, iPhone 15 Plus, iPhone 14 Pro Max iPhone 6.5" Display (필수) - 1,284 x 2,778 or 1,242 x 2,688 iPhone 14 Plus, iPhone 13 Pro Max, iPhone 12 Pro Max, iPhone 11 Pro Max, iPhone XS Max, iPhone XR iPhone 5.5" Display (필수) - 1,242 x 2,208 iPhone 8 Plus, iPhone 7 Plus, iPhone 6s Plus iPadOS, ..

Developments 2023.09.26

Flutter/Error] Null check operator used on a null value

======== Exception caught by rendering library ======== The following _TypeError was thrown during performLayout(): Null check operator used on a null value ======== Exception caught by rendering library ======== The following _TypeError was thrown during paint(): Null check operator used on a null value 어떤 값이 Null값인지 안 알려주고 Null 체크하라는 메시지만 나와서... 미쳐버리는 줄 알았는데, FittedBox 안에 Text의 String 값이 아무것도 ..

Flutter에 Admob 광고 달기 (google_mobile_ads)

Flutter에서 Admob 광고 다는데 google_mobile_ads 라는 패키지를 사용합니다. 예전에는 서드파티 패키기가 더 좋았었는데, 지금은 google에서 제공하는 google_mobile_ads가 가장 좋은 것 같습니다. pubspec.yaml dependencies: google_mobile_ads: ^3.0.0 android/app/src/main/AndroidManifest.xml ios/Runner/Info.plist GADApplicationIdentifier ca-app-pub-################~########## iOS는 Info.plist에 아래 내용을 추가적으로 입력해 주세요. iOS 14 이상에 대비하기 | Google Developers iOS 14 이상에 대..

Flutter/Widget] Tabbar

Flutter에는 TabBar가 3가지 정도 존재하는거 같다.. Material - TabBar, BottomNavigationBar Cupertino - CupertinoTabBar TabBar를 아래에 놓고 TabBarView를 위에 놓으면 BottomNavigationBar와 같은 형태로 구성 할 수 있다. Material에서 TabBar와 BottomNavigationBar의 사용상 차이라고 하면 스와이프 애니매이션의 유무 정도 인 것 같다.. TbarBar의 경우 좌우 스와이프로 페이지를 넘길 수 있다. 그래서 TabBar에서는 SingleTickerProviderStateMixin을 넣어 줘야 작동을 한다. 다음은 간단한 예제 이다.

Flutter/Package] image_picker

카메라나 앨범에서 이미지를 불러 올 수 있는 Flutter 에서 제공하는 플러그인 image_picker | Flutter Package Flutter plugin for selecting images from the Android and iOS image library, and taking new pictures with the camera. pub.dev 아무 생각 없이 iOS 시뮬레이터에서 실행 시켰더니... picker 버튼 누르자 마자 앱이 튕긴다.... 생각해 보니 Readme에도 써 있는 사진 읽는 권한 가져오는 걸 깜빡했다.. 하지만, requestFullMetadata = false 로 하면 권한을 요청하지 않아도 사진을 가져 올 수 있다. 하하하지만, 귀찮아서 권한 요청 안하고 requ..

반응형