body: SingleChildScrollView( //스크롤 뷰어로 만듬
child: Column(
children: [
Padding(
padding: const EdgeInsets.all(10),
child: TextField(//검색창 만들기
decoration: InputDecoration(
hintText: "영화 제목을 검색해주세요.",//텍스트 넣기
border: OutlineInputBorder(//외각선
borderSide: BorderSide(color: Colors.black),
),
suffixIcon: IconButton(
onPressed: () {},
icon: Icon(Icons.search),//검색버튼 생성
),
),
),
),
'Flutter.Study' 카테고리의 다른 글
2주차(2)- First Tab(shazam) (0) | 2023.06.30 |
---|---|
2주차(1)- 뼈대(shazam) (0) | 2023.06.30 |
1주차(3)-body(movie_reviews) (0) | 2023.06.29 |
1주차(1)-AppBar(movie_reviews) (0) | 2023.06.29 |
시작. (0) | 2023.06.29 |