flutter

flutter Version 3.7대 오류

이나주니 2023. 3. 14. 08:55
반응형

 

Scrollable.of() was called with a context that does not contain a Scrollable widget.

 

flutter 버전 3.7 기준 ListView.builder 일부가 바람직하지 않은 스크롤 효과가 발생하므로 Scrollable 로 감싸주어야 함.

 

3.7대 버전유지를 원하는경우 아래 코드를 오류가 나는 widget 부분에 감싸준다

Scrollable(
  viewportBuilder: (BuildContext context, ViewportOffset position) =>

 

 

https://api.flutter.dev/flutter/widgets/ViewportBuilder.html

 

ViewportBuilder typedef - widgets library - Dart API

ViewportBuilder = Widget Function(BuildContext context, ViewportOffset position) Signature used by Scrollable to build the viewport through which the scrollable content is displayed. Implementation typedef ViewportBuilder = Widget Function(BuildContext con

api.flutter.dev

 

반응형