1.344 Flutter 플러터 앱스토어/플레이스토어 URL 열기, Flutter Open AppStore/PlayStore URL 질문 플러터에서 안드로이드와 IOS에서 실행되는 스마트폰에 따라 PlayStore/AppStore의 특정 URL을 어떻게 열 수 있을까요? 즉, 브라우저가 아닌 애플리케이션을 열고 싶습니다. 이 스레드에서 안드로이드에 대한 일부 네이티브 방법을 찾았는데, 플러터로 어떻게 할 수 있을까요? final String appPackageName = getPackageName(); // getPackageName() from Context or Activity object try { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName))); } catch (android.content.Activi.. 2023. 12. 11. 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 맥에서 플러터를 완전히 제거하고 올바르게 어떻게 삭제하나요?, 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 ··· 4 5 6 7 8 9 10 ··· 86 다음