728x90
서론없이 본론으로 바로 가겠습니다.
텍스트필드를 터치했을때 키보드가 올라오면서 밀려 29픽셀이 오버플로우 되었습니다.
제가 해결한 방법은 Scaffold의 resizeToAvoidBottomInset: false, 속성을 주었습니다.
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
resizeToAvoidBottomInset: false, // resizeToAvoidBottomPadding 은 deprecated 되었습니다
body: SafeArea(
child: ....
)
);
}
빌드 결과
해결 되었습니다.
'컴퓨터 프로그래밍 > Flutter' 카테고리의 다른 글
[Error] Flutter & Android - path may not be null or empty string. path='null' (0) | 2021.08.12 |
---|---|
[Flutter] 플러터 작업 환경 셋팅 (macOS install) (0) | 2021.07.19 |
[Flutter] 나의 첫 플러터 앱 - 피어레스 플러스 (2) | 2021.07.13 |
[Flutter] PlatformChannel ( 플러터 채널 안드로이드 ) - 플러터 디바이스 정보 구하기 (4) | 2021.07.11 |
[플러터] Stateless vs Stateful 이 따로 존재하는 이유, 차이점 ( feat. Bloc 패턴 ) (0) | 2021.07.10 |