본문 바로가기

FlutterDevelopment8

Flutter 미래 빌더에서 여러 가지 방법을 사용할 수 있을까요?, Can I use multiple method on a future builder? 질문 @override Widget build(BuildContext context) { widget.groupid; widget.event_id; var futureBuilder = new FutureBuilder( future: _getAllTickets(), builder: (BuildContext context, AsyncSnapshot snapshot) { print(snapshot.connectionState); switch (snapshot.connectionState) { case ConnectionState.none: case ConnectionState.waiting: return new Text('...'); default: if (snapshot.hasError) return new.. 2023. 12. 18.
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 - 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 플러터에서 드롭다운 리스트를 구현하는 방법은 무엇인가요?, How to implement drop down list in flutter? 질문 나는 Flutter에서 드롭다운 목록으로 구현하고자하는 위치 목록이 있습니다. 나는 이 언어에 대해 매우 새롭습니다. 내가 한 것은 다음과 같습니다. new DropdownButton( value: _selectedLocation, onChanged: (String newValue) { setState(() { _selectedLocation = newValue; }); }, items: _locations.map((String location) { return new DropdownMenuItem( child: new Text(location), ); }).toList(), 이것은 내 항목 목록입니다: List _locations = ['A', 'B', 'C', 'D']; 그리고 나는 다음 오류를.. 2023. 5. 28.