error46 Flutter "오류: 멤버를 찾을 수 없음: 'packageRoot' " 플러터에서 [중복됨], " Error: Member not found: 'packageRoot' " in Flutter [duplicate] 질문 안드로이드 스튜디오에서 플러터 프로젝트를 실행하려고 할 때, 특정한 오류가 발생합니다 : [+11147 ms] [+13655 ms] ../../flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.2/lib/src/interface/local_platform.dart:46:19: Error: Member not found: 'packageRoot'. [ ] [ +1 ms] io.Platform.packageRoot; // ignore: deprecated_member_use [ ] [ ] ^^^^^^^^^^^ 인터넷에서 꽤 오랜 시간 동안 찾아보았지만 해결책을 찾을 수 없었습니다. 누군가 고칠 수 있는 방법이 있을까요? 답변 나도 같은 문제를 겪었다. .. 2023. 8. 14. Flutter SocketException: 연결 실패 (OS 오류: 허가되지 않은 작업, errno = 1) macOS에서 플러터 앱과 함께, SocketException: Connection failed (OS Error: Operation not permitted, errno = 1) with flutter app on macOS 질문 저는 Flutter 앱에서 다음과 같은 코드를 가지고 있습니다. 여기서 MyDataLoader는 main.dart에서 시작되는 위젯입니다. 코드: import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; class MyDataLoader extends StatefulWidget { @override _MyDataLoaderState createState() => _MyDataLoaderState(); } class _MyDataLoaderState extends State { void getData() async { final response = await http.get('https://jsonplacehold.. 2023. 8. 12. Flutter 리스트뷰를 SingleChildScrollView 안에 배치하되 서로 따로 스크롤되지 않도록 하는 방법은 무엇인가요?, how to place a listview inside a SingleChildScrollView but prevent them from scrolling separately? 질문 나는 다음과 같은 위젯 트리를 가지고 있습니다: SingleChildScrollView Column Container ListView(또는 GridView) 문제는 위와 같은 위젯 트리일 때, 오류가 발생한다는 것입니다: NEEDS PAINT 그래서 위젯 트리를 다음과 같이 변경했습니다: Column Container ListView(또는 GridView) 하지만 이 상황에서 ListView 또는 GridView 부분이 별도로 스크롤되고 있으며, 전체 위젯 트리를 스크롤하고 싶습니다. 어떻게 해야 할지 어떻게 생각하시나요? 답변 당신은 첫 번째 위젯 트리를 사용하고 다음 변경 사항을 적용할 수 있습니다: 모든 ListView와 GridView에 shrinkWrap: true를 설정하세요. 이렇게 하.. 2023. 8. 12. Flutter 플러터에서 Dart http 패키지를 사용하여 localhost:8000을 가리키는 방법은 어떻게 되나요?, How to point to localhost:8000 with the Dart http package in Flutter? 질문 I'm following the Flutter Networking/HTTP tutorial to do a GET request to a server running on my localhost:8000. Visiting my localhost via my browser works fine. My code looks like this: var url = 'http://localhost:8000'; Future getUnits(String category) async { var response = await httpClient.get('$url/$category'); return response.body; } This works fine when I point to any real URL, such as.. 2023. 8. 11. 이전 1 ··· 5 6 7 8 9 10 11 12 다음