본문 바로가기

전체 글980

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.
Flutter 플러터 - OutlineInputBorder의 테두리 색상 변경, Flutter - Changing the border color of the OutlineInputBorder 질문 나는 OutlineInputBorder의 테두리 색상을 변경하려고 시도했지만, 무수한 방법을 시도해도 실패했습니다. 나는 buildDarkTheme() 함수를 통해 전체 테마 구성을 생성했지만, 테두리 색상을 노란색으로 변경할 수 없습니다. 아래는 이미지와 코드입니다: import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); const kBlackHalf = const Color(0xFF212121); const kBlackLight = const Color(0xFF484848); const kBlack = const Color(0xFF000000); const kYellow = const Color(0xFFffd600).. 2023. 8. 23.
Flutter AppBar의 텍스트 색상과 FAB의 아이콘 색상을 테마를 사용하여 전체적으로 변경하는 방법은 무엇인가요?, How to change text color of AppBar, icon color of FAB universally using theme? 질문 나는 AppBar의 배경색을 Colors.amber로 설정할 수 있습니다. 이로 인해 텍스트 색상은 자동으로 검정색으로 설정됩니다. 접근성 문제가 발생할 수 있음을 알고 있지만, 어쨌든 텍스트 색상을 흰색으로 설정하고 싶습니다. 여전히 AppBar에서 텍스트 색상을 설정할 수 있지만, 전체적으로 설정하고 싶습니다. 내 앱에 사용 중인 테마는 다음과 같습니다. title: 'Flutter Demo', theme: new ThemeData( primarySwatch: Colors.amber, textTheme: Theme.of(context).textTheme.apply( bodyColor: Colors.white, displayColor: Colors.white, ), ), 답변 가장 직관적인 방법은.. 2023. 8. 23.
Flutter 플러터를 사용하여 위젯의 한 쪽을 원형 테두리로 만드는 방법은 무엇인가요?, How to make one side circular border of widget with flutter? 질문 I'm trying to build one side circular border with Container widget in flutter. I have searched for it but can't get any solution. Container( width: 150.0, padding: const EdgeInsets.all(20.0), decoration: BoxDecoration( // borderRadius: BorderRadius.circular(30.0), /* border: Border( left: BorderSide() ),*/ color: Colors.white ), child: Text("hello"), ), 플러터에서 Container 위젯을 사용하여 한쪽에 원형 테두리를 만들.. 2023. 8. 23.
Flutter 플러터에서 콘솔 메시지를 출력하는 방법이 있나요?, Is there a way to print a console message with Flutter? 질문 I'm debugging an app, but I need to know some values in the fly, I was wondering if there's a way to print a message in console like console.log using Javascript. I appreciate the help. 앱을 디버깅하고 있지만, 실시간으로 일부 값을 알아야 합니다. Javascript를 사용하여 console.log와 같이 콘솔에 메시지를 출력하는 방법이 있는지 궁금합니다. 도움을 감사히 받겠습니다. 답변 print()은 아마도 당신이 찾고 있는 것입니다. 여기에 플러터 디버깅에 대한 추가 정보가 있습니다. 2023. 8. 23.