Flutter로 Repick 개발 중 갑자기 위와 같은 오류가 발생했다. 오류 문구를 보면 KGP(Kotlin Gradle Plugin) 최신 버전을 요구한다 .. 같은데 이와 같은 오류를 검색해보니buildscript { ext.kotlin_version = '1.9.20' repositories { google() mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" }}을 `android/build.gradle`에 추가하면서 최신 버전을 적용하면 된다고 하지만 전혀 해결되지 않앗다. . 2시간 반동안 위와 ..
Frontend/Flutter
동아리에서 진행했던 중고 의류 거래 플랫폼 Repick을 웹에서 앱으로 새로 개발을 하면서 장바구니 ListView를 구현하였는데, 아래와 같이 scroll시에 AppBar의 색상이 바뀌는 현상이 있었다 AppBar Color 변경 https://api.flutter.dev/flutter/material/AppBar/scrolledUnderElevation.html scrolledUnderElevation property - AppBar class - material library - Dart API double? scrolledUnderElevation final The elevation that will be used if this app bar has something scrolled underne..