UI32 Flutter 텍스트 폼 필드에서 비밀번호를 표시/숨기는 방법은 무엇인가요?, How to show/hide password in TextFormField? 질문 현재 비밀번호는 다음과 같이 설정되어 있습니다: TextFormField TextFormField( decoration: const InputDecoration( labelText: 'Password', icon: const Padding( padding: const EdgeInsets.only(top: 15.0), child: const Icon(Icons.lock), )), validator: (val) => val.length _password = val, obscureText: true, ); 비밀번호를 보이게 하거나 숨기는 버튼과 같은 상호작용 버튼이 필요합니다. TextFormField 내에서.. 2023. 5. 29. Flutter: ListView 터치 스크롤 비활성화하기, Flutter: ListView disable scrolling with touchscreen 질문 ListView를 ScrollController로만 스크롤 가능하게 만들 수 있나요? 답변 댓글에서 언급한 것처럼, NeverScrollableScrollPhysics 클래스를 사용하면 됩니다: NeverScrollableScrollPhysics 클래스 사용자가 스크롤할 수 없는 스크롤 물리학입니다. 2023. 5. 29. Flutter 커스텀 카드 모양 플러터 SDK, Custom Card Shape Flutter SDK 질문 I have developed an app with GridView on Flutter. GridView items are Card and the default card shape is Rectangle with a radius of 4. I know there is shape property for Card Widget and it takes ShapeBorder class but I am unable to find how to use ShapeBorder class and customize my cards in GridView. How do I go about this? 답변 이렇게 사용할 수 있습니다. Card( shape: RoundedRectangleBorder( borderRadius: .. 2023. 5. 28. Flutter Dart: 리스트 매핑하기 (list.map), Dart: mapping a list (list.map) 질문 저는 String 목록이 있습니다. 예를 들어, var moviesTitles = ['Inception', 'Heat', 'Spider Man']; 그리고 moviesTitles.map을 사용하여 Flutter의 Tab Widget 목록으로 변환하고 싶습니다. 답변 아래 코드를 사용할 수 있습니다. moviesTitles.map((title) => Tab(text: title)).toList() 예시: bottom: new TabBar( controller: _controller, isScrollable: true, tabs: moviesTitles.map((title) => Tab(text: title)).toList() , ), 2023. 5. 28. 이전 1 2 3 4 5 6 7 8 다음