TextField 는 글자를 입력받는 위젯입니다.
<전체코드>
class MyFirstWidget extends StatelessWidget {
MyFirstWidget({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('TextField Sample'),
),
body: ListView(
scrollDirection: Axis.vertical,
padding: const EdgeInsets.all(10.0),
children: <Widget>[
TextField(
decoration: InputDecoration(
labelText: '기본 design',
),
),
TextField(
decoration: InputDecoration(
labelText: '머터리얼 design',
border: OutlineInputBorder(),
),
)
],
)
);
}
}
TextField 의 InputDecoration 클래스로 OutlijneInputBorder()를 지정하면 머티리얼 디자인을 구현할 수 있습니다.
labalText : text가 입력되기 전까지 표시되는 hint text입니다.
'개발 > 플러터' 카테고리의 다른 글
[플러터] Padding 에 대하여 (0) | 2020.05.09 |
---|---|
[플러터] Navigator 에 대해 ( 화면 전환 ) (0) | 2020.05.07 |
[플러터] ClipOval 에 대해서 (0) | 2020.05.05 |
[플러터] 이미지 파일 넣기 ( assets ) (0) | 2020.05.05 |
[플러터] AnimatedWidget에 대해서 ( 커스텀 애니메이션 위젯 ) (0) | 2020.05.04 |
댓글