flutter

flutter 3.7 버전 오류

이나주니 2023. 3. 6. 09:52
반응형

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

Flutter를 3.7 버전에서 나는 오류

 

https://github.com/AbdulRahmanAlHamali/flutter_typeahead/issues/446

 

`onSuggestionSelected` method is not able to called with flutter 3.7 version · Issue #446 · AbdulRahmanAlHamali/flutter_typea

Up to Flutter 3.3.10 version onSuggestionSelected method was working correctly , But after upgrading to Flutter 3.7 version, it won't be called.

github.com

 

조치 방법

 

기존 코드에 Scrollable 감싸기

Scrollable(
  viewportBuilder: (BuildContext context, ViewportOffset position) => 기존 코드,
);

반응형