반응형 플러터47 [flutter] Implement a button that moves to the top of the list in 3 minutes (3분만에 리스트 최상단으로 이동하는 버튼 구현하기)(Scroll Back To Top) [flutter] Implement a button that moves to the top of the list in 3 minutes 3분만에 리스트 최상단으로 이동하는 버튼 구현하기 (Scroll Back To Top) 설명 (Explanation) 리스트 최상단으로 이동하는 버튼 (Scroll Back To Top)은 사용자에게 있어서 큰 편리함을 제공한다. 리스트를 탐색하다가 한 번에 리스트의 가장 위로 이동할 수 있기 때문이다. 우리는 이 버튼을 플로팅 버튼으로 구현할 것이며 리스트 스크롤이 일정한 거리만큼 내려갔을 때부터 버튼이 표시되도록 할 것이다. ( The button that moves to the top of the list (Scroll Back To Top) provides gre.. 2022. 6. 6. 안드로이드 앱 버전 업데이트 방법 (flutter) [flutter] 출시한 앱 버전 업데이트 방법 pubspec.yaml 프로젝트에 들어있는 pubspec.yaml의 아래 version을 변경해준다. version 형식은 버전이름+버전코드 형식이다. 따라서 버전 업을 할때마다 버전이름도 증가하고, 버전코드도 더 큰 값으로 올라가야한다. build.gradle 위와 원리는 같다. 버전코드와 버전이름을 pubspec.yaml와 같은 숫자로 증가해서 바꿔준다. local.properties 이제 마지막이다. local.properties의 버전이름과 버전코드를 동일하게 바꿔준다. 새 버전 등록 변경이 모두 끝났다면 새로 앱을 빌드한다. 그리고 구글 플레이 콘솔에 접속하여 새로 빌드한 앱을 아래 사진의 App Bundle에 드롭하고 저장하면 끝!! 2022. 6. 5. [flutter] Change app icon (Android, iPhone) (앱 아이콘 변경하기 (안드로이드, 아이폰)) [flutter] Change app icon (Android, iPhone) 앱 아이콘 변경하기 앱 아이콘 파일 만들기(Create an app icon file) 앱 아이콘으로 만들고 싶은 이미지를 가지고 아래 사이트로 들어간다. (Go to the site below with the image you want to make as an app icon.) https://appicon.co/ App Icon Generator appicon.co 아래와 같이 왼쪽 사각형에 이미지파일을 끌어다 놓고 우측 하단의 Generate 버튼을 누르면 갖가지 이미지 파일들이 생성된다. (Drag and drop the image file to the left rectangle as shown below Click t.. 2022. 6. 5. [flutter] How to fix the error "'WhereIterable<Products>' is not a subtype of type 'List<Products>'" 문제 상황 flutter 앱 실행 중에 아래와 같은 에러메시지가 표시되고 빌드에 실패합니다. How to fix the error "'WhereIterable' is not a subtype of type 'List'" 해결 방법 아래와 같이 리스트로 변환하여 복사합니다. List filter(String title) { return products.where((element) => element.category == title).toList(); } https://www.google.com/search?q=Unhandled+Exception%3A+type+%27WhereIterable%3CStore%3E%27+is+not+a+subtype+of+type+%27List&rlz=1C1IBEF_koKR957.. 2022. 1. 25. 이전 1 ··· 4 5 6 7 8 9 10 ··· 12 다음 반응형