티스토리 뷰
개발/Flutter
플러터 (Flutter) : Dismiss the keyboard when tap outwide the textfield (ios/android) 화면터치시 키보드 내려가게 하기
Byunpa24 2021. 8. 18. 14:41반응형
만약 textinput과 일반적인 키보드를 사용하면 ondone 버튼을 만들어서 키보드를 내려가게 할 수 있습니다.
하지만 ios 숫자 키보드에서는 ondone 이 없기 때문에 키보드가 없어지지가 않습니다.
그럴때 해야하는것이!!
FocusManager.instance.primaryFocus.unfocus();
1) 일단 클래스 위젯을 하나 생성합니다.
아래의 위젯은 일반 플러터 프로젝트에서도 그대로 사용하실 수 있습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import 'package:flutter/material.dart';
class DismissKeyboard extends StatelessWidget {
final Widget child;
DismissKeyboard({this.child});
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () {
FocusScopeNode currentFocus = FocusScope.of(context);
if (!currentFocus.hasPrimaryFocus &&
currentFocus.focusedChild != null) {
FocusManager.instance.primaryFocus.unfocus();
}
},
child: child,
);
}
}
|
cs |
2) 그리고 main.dart파일에 와서 MaterialApp을 DismissKeyboard로 감싸주면 됩니다.
1
2
3
4
5
6
7
8
9
10
|
class MyApp extends StatelessWidget {
const MyApp({
Key key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
return DismissKeyboard(
child: MaterialApp(
|
cs |
반응형
'개발 > Flutter' 카테고리의 다른 글
DateTime.now()를 쓸 때 주의할점!! (단위통일) (0) | 2021.08.23 |
---|---|
Solving IOS bottom notch problem in flutter (0) | 2021.08.20 |
플러터의 Listview 종류들 (Types of Listviews in Flutter) TBC.. (0) | 2021.08.12 |
Scrolling widgets in flutter 정리!! (지속 추가될 예정) (0) | 2021.08.12 |
(Solved) Flutter VS code Error: Saving dirty editors is taking longer than expected... / Dart Formatter freezing (0) | 2021.08.12 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Ted #영어공부 #3분영어 #영어회화 #영어
- flutter #flutter background service
- ㅂ
- dart
- flutter #fluttererror #flutterioserror
- #저작권보호원 #저작권보호원 면접 #저작권보호원 2차 #디지털 알바 #디지털 부업 #저작권 보호원 모니터링 #모니터링알바 #저작권 보호원 청년 #저작권 보호원 청년 모니터링
- flutter listviews #flutter
- flutter #localization #flutterlocalization
- 조종사 #국토부 조종사 #조종사 수급상황 #항공기 조종사 #항공기 당 조종사 비율 #국적항공사 조종사 수
- 실업급여
- 공공데이터 청년인턴 #공공데이터 #알바 #공공데이터 청년인턴 후기
- flutter #udp #flutterudp
- flutter #ios #android #smsautofill
- 조종사 #조종사되는법 #
- 드론 #초경량비행장치 #비행 #항공 #드론자격증 #드론1종
- 대한항공 조종사 #대한항공 조종사 채용 #신입조종사 채용 #조종사 채용
- 대한항공 신입조종사 모집 #대한항공 조종사 모집
- flutter #firebase #개발
- 쿠팡이츠 배달파트너 #배민컨넥트 #자전거배달 #로드자전거배달 #직장인 부수입 #부업 #알바
- 영어공부 #TED #TED 영어공부 #3분영어 #영어회화 #영어
- 시력 #시력 개선 #눈운동 #조종사 눈건강 #시력회복 #눈 영양제
- 정부정책 #청년정책 #정부청년지원 #경기도청년지원
- 드론 #시마x5 #symax5
- 매빅미니2 #촬여용 드론 #드론 #mavic mini2
- 드론구술시험 #초경량비행장치1종 구술시험
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
글 보관함