본문 바로가기

TextField22

Flutter 플러터에서 TextField가 선택되었을 때 어떻게 감지할 수 있나요?, How to detect when a TextField is selected in Flutter? 질문 저는 선택된 필드가 표시될 때 소프트 키보드에 의해 가려지는 플러터 텍스트 필드를 가지고 있습니다. 키보드가 표시될 때 필드를 스크롤하여 키보드를 피하고 싶습니다. 이는 꽤 일반적인 문제이며 이 StackOverflow 게시물에서 해결책이 제시되어 있습니다. ScrollController 부분은 해결했지만, TextField가 선택되었을 때 어떻게 감지할 수 있을까요? 이벤트 메서드 (예: onFocus(), onSelected(), onTap() 등)가 없어 보입니다. 저는 TextField를 GestureDetector로 래핑해 보았지만, 이벤트가 캡처되지 않은 것 같습니다. new GestureDetector( child: new TextField( decoration: const InputD.. 2023. 8. 11.
Flutter 플러터 - 텍스트 필드 힌트 색상 변경 방법?, Flutter - How to change TextField hint color? 질문 I'm a bit confused how to change the hint color of the textfield. Someone can guide me how to do it.Thanks child: TextField( style: TextStyle(fontSize: 20), decoration: InputDecoration( hintText: "Password", border: new OutlineInputBorder( borderSide: new BorderSide( color: Colors.teal, ), ), prefixIcon: const Icon( Icons.security, color: Colors.white, ), ), ), 답변 당신은 InputDecoration에서 hintSt.. 2023. 6. 24.
Flutter 플러터에서 텍스트 편집 필드 비활성화, Disable a text edit field in flutter 질문 I need to disable TextFormField occasionally. I couldn't find a flag in the widget, or the controller to simply make it read-only or disable. What is the best way to do it? 가끔 TextFormField를 비활성화해야 합니다. 위젯이나 컨트롤러에서 읽기 전용 또는 비활성화를 간단하게 만들 수 있는 플래그를 찾을 수 없습니다. 어떻게 하는 것이 가장 좋은 방법인가요? 답변 이 작업을 수행하는 또 다른 방법이 있습니다. 이 방법은 이 문제를 일으키지 않습니다. 누군가에게 도움이 되기를 바랍니다. AlwaysDisabledFocusNode를 만들고 TextField의 f.. 2023. 6. 18.
Flutter 플러터에서 어떻게 둥근 텍스트 필드를 만들 수 있나요?, How can I make rounded TextField in flutter? 질문 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 ? 답변 당신은 TextField의 decoration 매개 변수 내에서 둥근 모서리를 추가할 수 있습니다. TextField( decoration: InputDecoration( border: OutlineInputBorder( borderRadius: BorderRadius.circular(10.0), ), filled: true, hintStyle: TextStyle.. 2023. 6. 14.