본문 바로가기

전체 글980

Flutter 플러터를 위한 Dart SDK 업데이트, update dart sdk for flutter 질문 나는 플러터에서 dart SDK >= 2.2.0을 사용하고 싶다. 그러나 현재 사용 중인 버전은 2.1.2이다. flutter --version Flutter 1.2.1 • channel stable • https://github.com/flutter/flutter.git Framework • revision 8661d8aecd (2 months ago) • 2019-02-14 19:19:53 -0800 Engine • revision 3757390fa4 Tools • Dart 2.1.2 (build 2.1.2-dev.0.0 0a7dcf17eb) 나는 독립적으로 2.2.0 버전을 설치해보았고, 성공했다: dart --version Dart VM version: 2.2.0 (Tue Feb 26 15:.. 2023. 6. 14.
Flutter 에뮬레이터를 위한 Visual Studio Code 장치 설정 방법, How to set up devices for Visual Studio Code for a Flutter emulator 질문 I'd like to use Visual Studio Code as my editor for Flutter development, but I don't know how to get the emulator going. I've installed Visual Studio Code on Ubuntu 17.10 (Artful Aardvark). I followed the first half of instructions as outlined on the Flutter: Get Started page (Create new app). Then I ran into trouble in the second half: Run the app Make sure a target device is selected in the.. 2023. 6. 14.
Flutter 투명 배경과 함께 플러터 모서리 반경, flutter corner radius with transparent background 질문 아래는 투명 배경을 가진 라운드 코너 컨테이너를 렌더링할 것으로 예상되는 코드입니다. return new Container( //padding: const EdgeInsets.all(32.0), height: 800.0, //color: const Color(0xffDC1C17), //color: const Color(0xffFFAB91), decoration: new BoxDecoration( color: Colors.green, //new Color.fromRGBO(255, 0, 0, 0.0), borderRadius: new BorderRadius.only( topLeft: const Radius.circular(40.0), topRight: const Radius.circular(40.0)).. 2023. 6. 14.
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.
Flutter - Container onPressed? 플러터 - 컨테이너 onPressed?, Flutter - Container onPressed? 질문 나는 이 컨테이너를 가지고 있습니다: new Container( width: 500.0, padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0), color: Colors.green, child: new Column( children: [ new Text("Ableitungen"), ] ), ), 사용자가 Container를 클릭하면 IconButton과 같은 방식으로 onPressed() 메서드가 실행되기를 원합니다. Container로 이러한 동작을 어떻게 구현할 수 있을까요? 답변 다음과 같이 GestureDetector 위젯을 사용할 수 있습니다: new GestureDetector( onTap: (){ print("Container clicke.. 2023. 6. 14.
Flutter VoidCallback에 매개변수가 있는 함수를 전달하세요., Pass a function with parameters to a VoidCallback 질문 Function에 매개 변수를 전달하여 VoidCallback을 전달하는 것이 가능한가요? 예를 들어 다음과 같은 것이 있을까요: class MyClass { void doSomething(int i){ } MyOtherClass myOtherClass = new MyOtherClass(doSomething); } class MyOtherClass { final VoidCallback callback(int); MyOtherClass(this.callback); callback(5); } 답변 VoidCallback의 선언은 다음과 같습니다. typedef void VoidCallback(); 이는 인자가 없고 유용한 값을 반환하지 않는 함수의 타입입니다. 이것이 원하는 것은 아닌 것 같습니다. 프.. 2023. 6. 14.
Flutter 플러터 내비게이션 인덱스 1로 팝하기, Flutter Navigation pop to index 1 질문 저는 네비게이터에 재귀적으로 라우트를 추가하고 있습니다. 20개 이상의 뷰가 있을 수 있습니다. 팝은 광고대로 작동하지만, 인덱스 1로 팝하고 모든 푸시 기록을 제거하려면 어떻게 해야 할까요? 이 팝 명령을 returntoIndex0과 같은 것으로 대체할 방법이 있을까요... new ListTile( title: new RaisedButton( child: new Text("POP"), onPressed: () { var route = new MaterialPageRoute( builder: (BuildContext context) => new NextPage3(value:"hi there from 3"), ); Navigator.pop(context); }, ), ), 답변 이름이 지정된 경로를 .. 2023. 6. 14.
배열에서 값이 존재하는지 확인하기(Flutter dart), Check value in array exists Flutter dart 질문 나는 조건을 확인하려고 노력하고 있습니다. if (value in List) { exist } else { not exist } 하지만 누구에게도 도움이 되는 것이 없습니다. 아이디어가 있다면 공유해주세요. My List = _quantityController[]; itemId는 정수입니다. 내 항목 ID가 내 목록 배열에 있는지 확인하려고합니다 ... 감사합니다! 답변 list.contains(x); Contains method list.contains(x); Contains method 2023. 6. 12.