동도리 개발 로그

Flutter (플러터) - textfield 입력시 labelText안보이기 본문

개발/Flutter

Flutter (플러터) - textfield 입력시 labelText안보이기

동돌이 2022. 6. 21. 10:41
반응형

TextField에 labelText로 어떤 값을 입력해야 하는지 알려줘야 하는데 입력을 하려고 누르면 label이 위로 올라가게 된다. 

이부분을 없애기 위해서는 어떻게 해야하나

 

TextFiled.decoration 의 InputDecoration 에

floatingLabelBehavior: FloatingLabelBehavior.never 를 추가해주면 label이 안나온다.

 

TextField(

   ...,

   decoration: InputDecoration(

                       floatingLabelBehavior: FloatingLabelBehavior.never, ...),),

 

 

반응형