'Flutter/Error and Tips' 카테고리의 글 목록 — SH's Devlog

Flutter/Error and Tips

Flutter/Error and Tips

[Flutter] InkWell 물결효과가 동작하지 않는 문제해결법(InkWell not showing ripple effect)

문제 발생 아래와 같이 Container에 InkWell을 붙였는데 InkWell의 물결 효과가 나타나지 않았습니다. 찾아보니 해당 이슈는 플러터의 bug report에 등록되어 있었고 Container의 컬러가 InkWell의 ripple effect를 덮어버리기 때문에 이러한 현상이 일어난다고 합니다. Ripple효과를 가진 Container를 만들때마다 이런 버그가 있는지 깜빡하고 맨날 해결법 검색을 해서 해결책을 적어두고 보려고 합니다. https://github.com/flutter/flutter/issues/3782 InkWell and FlatButton do not ripple when inside a container with opaque background · Issue #3782 · ..

Flutter/Error and Tips

[Flutter/Error] build()안에 variable 넣으면 안되는 이유 (setState does not update UI)

StatefulWidget의 build()에서 변수 값을 초기화해는 구문을 넣어주니 문제가 발생했다. 문제발생 class DailyCalendar extends StatefulWidget { const DailyCalendar({Key? key, required this.onDayClick, required this.selectedDateTime}) : super(key: key); final Function(DateTime) onDayClick; final DateTime selectedDateTime; // .. @override _DailyCalendarState createState() => _DailyCalendarState(); } class _DailyCalendarState extends ..

반응형
seunghwaan
'Flutter/Error and Tips' 카테고리의 글 목록