본문 바로가기

Flutter397

Flutter 항목을 탭한 후에 Scaffold의 서랍을 닫는 방법은 무엇인가요?, How to close Scaffold's drawer after an item tap? 질문 스캐폴드의 드로어에서 항목을 탭한 후에 자동으로 숨기고 싶습니다. 플러터에서 어떻게 할 수 있을까요? 답변 Navigator.pop()는 Drawer 경로를 스택에서 제거하고 닫히도록합니다. 2023. 8. 23.
Flutter 다트에서 요일의 이름을 어떻게 얻을 수 있나요?, How get the name of the days of the week in Dart 질문 누군가는 DateTime에서 요일의 이름을 어떻게 추출할 수 있는지 알고 있나요? 예시: DateTime date = DateTime.now(); String dateFormat = DateFormat('dd-MM-yyyy hh:mm').format(date); 결과 -> 금요일 답변 'EEEE'를 날짜 패턴으로 사용하세요. DateFormat('EEEE').format(date); /// 예: 목요일 잊지말고 import 하세요. import 'package:intl/intl.dart'; 더 많은 정보는 여기를 확인하세요 : https://pub.dev/documentation/intl/latest/intl/DateFormat-class.html 2023. 8. 23.
Flutter 플러터: 프로그래밍 방식으로 드로어 열기, Flutter: How to open Drawer programmatically 질문 저는 Drawer를 슬라이딩이 아닌 프로그래밍 방식으로 열고 싶습니다. 슬라이딩 기능(드로어의 터치 기능)을 비활성화하는 방법은 무엇인가요? 답변 Null 안전 코드 GlobalKey를 사용: final GlobalKey _key = GlobalKey(); // 키 생성 @override Widget build(BuildContext context) { return Scaffold( key: _key, // 키를 Scaffold에 할당. drawer: Drawer(), floatingActionButton: FloatingActionButton( onPressed: () => _key.currentState!.openDrawer(), // Scaffold.of(context).openDrawer().. 2023. 8. 23.
Flutter 앱에 대한 정의되지 않은 메소드 'map'에 대한 오류 / CocoaPod 오류, Error Regarding undefined method `map' for nil:NilClass for Flutter App / CocoaPod Error 질문 플러터 애플리케이션에 오류가 발생하고 있습니다. 터미널에서 "flutter run" 스크립트를 실행하면 Cocoapods에서 다음과 같은 오류가 발생합니다: "CocoaPods에서의 오류 출력: 검사를 찾는 중 오류 발생: undefined method 'map' for nil:NilClass" (첨부된 사진에서도 확인 가능). 이 문제를 해결하는 방법은 무엇인가요? 답변 ios 폴더에서 pod install 명령을 실행하려고 했습니다. @boonyongyang의 해결책은 필요하지만, 설치된 ffi가 2개인 것 같아 arch -x86_64 명령으로도 실행해야 했습니다. sudo arch -x86_64 gem install ffi # ios 폴더로 이동한 후 실행 arch -x86_64 pod ins.. 2023. 8. 23.