Flutter397 Flutter 플러터에서 textField를 확장하는 방법은 텍스트 영역처럼 보입니다., How to expand a textField in flutter looks like a text Area 질문 테스트 필드를 랜드스케이프 모드에서 탭하면 화면이 완전히 확장되어 WhatsApp과 같은 방식으로 표시됩니다. TextFormField( keyboardType: TextInputType.number, decoration: InputDecoration( prefixIcon: Padding( padding: EdgeInsets.all(0.0), child: Icon(Icons.person, size: 40.0, color: Colors.white), ), hintText: "의견을 입력하세요", hintStyle: TextStyle(color: Colors.white30), border: OutlineInputBorder( borderRadius: BorderRadius.all(new Radius.c.. 2023. 12. 11. Flutter 플러터에서 GridTile 내 이미지 위에 잉크웰 리플 효과 추가, InkWell ripple over top of image in GridTile in Flutter 질문 나는 사용자가 타일을 탭할 때 GridTile 안의 이미지 위에 리플 효과를 얻기 위해 InkWell을 사용하려고 시도하고 있습니다. 이미지 자체가 리플을 가리고 있는 것 같습니다. 이미지를 제거하면 리플이 보입니다. 아래는 단일 GridTile의 코드입니다. return new InkWell( onTap: () => debugPrint(s.displayName), highlightColor: Colors.pinkAccent, splashColor: Colors.greenAccent, child: new GridTile( footer: new GridTileBar( title: new Text(s.displayName), subtitle: new Text(s.gameName), backgroundC.. 2023. 12. 11. Flutter 맥에서 플러터를 완전히 제거하고 올바르게 어떻게 삭제하나요?, How do you uninstall Flutter completely and properly from a Mac? 질문 Flutter를 Mac에서 완전히 제거해야 합니다. 그러나 해당 작업을 도와줄 어떠한 문서도 찾을 수 없습니다. 답변 Flutter는 Mac의 디렉토리에 다운로드하고 압축 해제하는 SDK입니다. 자동 제거 프로세스가 없으므로 자동 설치 프로세스도 없습니다. zip 파일을 다운로드하고 압축을 풀어 "설치"했습니다. 단지 압축을 푼 디렉토리의 내용물을 제거하면 됩니다. 시스템의 어디에서나 flutter 명령을 호출할 수 있도록 경로를 추가하는 것도 수동으로 수행해야 합니다. 그렇게 했다면 셸의 PATH에서도 제거할 수 있습니다. 2023. 12. 11. Flutter 플러터 - 플러터에서 숫자 키보드에 완료 버튼을 추가하는 방법, Flutter - how to add done button in number keyboard in flutter 질문 나는 TextFormField에서 숫자 형식 입력에 done 버튼을 추가하려고 시도하고 있지만, 그렇게 할 수 없었습니다. TextFormField( key: Key(keyValue), initialValue: valueBuilder, onSaved: (text) { fieldsController.text = text.trim(); }, inputFormatters: [inputFormatters], keyboardType: TextInputType.phoneNumber,) 아래와 같은 키보드를 입력 텍스트 폼 필드에 생성하고 싶습니다. 답변 Change keyboardType: TextInputType.number to keyboardType: TextInputType.numberWithOptio.. 2023. 12. 11. 이전 1 ··· 8 9 10 11 12 13 14 ··· 100 다음