flutter error 발생시 해결 방안 --

 

Unhandled Exception: MissingPluginException(No implementation found for method getAll on channel plugins.flutter.io/shared_preferences)
  1. Run 'flutter clean'
  2. Run 'flutter pub get'
  3. Delete the app from the emulator
 새로운 플러그인을 사용 하여 발생 하는 경우 초기화 setting 을 해야한다.



A RenderFlex overflowed by 283 pixels on the bottom.

---> return new Scaffold(
resizeToAvoidBottomPadding: false,
resizeToAvoidBottomInset: false,

The relevant error-causing widget was:
  TextFormField

--> 

An InputDecorator, which is typically created by a TextField, cannot have an unbounded width.

-- > TextField 에 특정 너비를 제공해야합니다 간단히 width 를 제공하십시오.  당신의 Container 에서  또는 당신의 Column 를 포장  와이즈 비즈 .Container(
width: 100, // do it in both Container
child: TextField(),
),



댓글

이 블로그의 인기 게시물

자바 string 비교 할때 equlas 를 사용하자

jqgrid 에서 export execl 붙이기

flutter webview scroll 안되는 경우 gestureRecognizers: gestureRecognizers, 추가 해서 되었다