본문 바로가기
Flutter/Flutter FAQ

Flutter 플러터에서 어떻게 둥근 텍스트 필드를 만들 수 있나요?, How can I make rounded TextField in flutter?

by 베타코드 2023. 6. 14.
반응형

질문


Material Design for iOS doesn't look good, especially the TextField. So is there any way to create your own ? Or Is ther any way to add some styling to TextField so it will look rounded ?


답변


당신은 TextFielddecoration 매개 변수 내에서 둥근 모서리를 추가할 수 있습니다.

TextField(
  decoration: InputDecoration(
      border: OutlineInputBorder(
        borderRadius: BorderRadius.circular(10.0),
      ),
      filled: true,
      hintStyle: TextStyle(color: Colors.grey[800]),
      hintText: "Type in your text",
      fillColor: Colors.white70),
)
반응형

댓글