flutter error 발생시 해결 방안 --
Unhandled Exception: MissingPluginException(No implementation found for method getAll on channel plugins.flutter.io/shared_preferences)
- Run 'flutter clean'
- Run 'flutter pub get'
- 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(),
),
댓글
댓글 쓰기