본문 바로가기

Flutter397

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. 16.
Flutter 리스트에서 특정 항목을 제거하는 방법은 무엇인가요?, How to remove specific items from a list? 질문 List에서 id = 001인 항목을 제거하는 방법은 무엇인가요? final List _replytile = []; _replytile.add( ReplyTile( member_photo: 'photo', member_id: '001', date: '01-01-2018', member_name: 'Denis', id: '001', text: 'hallo..' ) ); 답변 removeWhere는 이를 수행할 수 있습니다: replytile.removeWhere((item) => item.id == '001') 또한 List Dartdoc도 참조하세요. 2023. 8. 14.
Flutter 플러터에서 SnackBar를 표시합니다., Display SnackBar in Flutter 질문 Flutter 내에서 간단한 SnackBar를 표시하고 싶습니다. 이를 위해 애플리케이션은 MaterialApp을 사용하여 MyHomePage라는 Stateful 위젯의 새 인스턴스를 생성합니다. showSnackBar() 메서드에서 SnackBar를 표시하려고 시도했지만, The method showSnackBar was called on null 오류가 발생합니다. 이 코드에 문제가 무엇인가요? class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( title: 'Flutter', theme: new ThemeData( primarySwatch: Colors.. 2023. 8. 14.
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.