2023-11-15 1. 방법 pubspec.yaml 에 우선 아래와 같이 logger 패키지를 선언해 주고 저장해 주면 vscode가 알아서 필요한 정보를 가져온다. dependencies: flutter: sdk: flutter . . . logger: ^2.0.2+1 이후 main.dart 와 같은 곳에 아래와 같이 선언한다. Future main() async { . . . runApp(const MyApp()); } var log = Logger( printer: PrettyPrinter(), ); 아래와 같은 방식 처럼 사용하면 된다. 문자열 메시지 대신 List, Map 또는 Set과 같은 다른 개체를 전달할 수도 있다. if (user != null) { log.i('현재 로그인 유저 : ..
2023-10-08 1. 설치 공식 홈페이지에서 설치하는 방법도 있지만 개인적으로는 chocolatey를 활용해 설치하는 게 조금 더 편하고 간편하기 때문에 해당 방법을 추천한다. 우선적으로 windows powershell을 관리자 모드로 실행한다. 이후 아래 링크로 들어 간다. https://chocolatey.org/install Installing Chocolatey Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Cho..