본문 바로가기

분류 전체보기12

[Flutter] VS Code에서 Google Duet AI 적용하기 https://cloud.google.com/code/docs/vscode/write-code-duet-ai * Duet AI 는 2024년 2월 1일까지 한시적으로 무료입니다!![종료] 지원 프로그래밍 언어 더보기 Bash C C++ C# Dart Go GoogleSQL Java JavaScript Kotlin Lua MatLab PHP Python R Ruby Rust Scala SQL Swift TypeScript YAML Supported code infrastructure interfaces Google Cloud CLI Kubernetes Resource Model (KRM) Terraform 사용 설정 방법 1. VS Code 에서 Google Cloud Code 확장설치 2. VS Code.. 2024. 1. 6.
[Flutter] adaptive 위젯 종류 플랫폼에 맞게 디자인 해야한다지만 프로젝트를 하다보면 그게 잘 안됩니다.. 그래도 조금이나마 노력해보자면 위 그림의 위젯들은 cntl + F 찾기 바꾸기 신공으로 한번에 적용할수 있는 것들입니다. radioTheme: RadioThemeData( fillColor: MaterialStateColor.resolveWith( (states) { if (states.contains(MaterialState.pressed)) { return Colors.red; } return Colors.blue; }, ), ), 그리고 theme.dart 를 만들고 MaterialStateColor state 조건문을 만들면 개별 위젯에서 설정할 필요가 없어집니다. 비교적 적은 노력으로 앱 완성도를 높일 수 있는 방법이니 .. 2023. 11. 6.
작성중 [flutter] 플러터 #3 - Router 와 페이지간 클래스 종속 & 호출 안녕하세요. 이번 글에서는 플러터 router 종류에 대해서 간략히 알아보고 비교해보겠습니다. flutter_bloc [https://bloclibrary.dev/#/recipesflutternavigation] GetX [https://github.com/jonataslaw/getx/blob/master/documentation/kr_KO/dependency_management.md] Go_router [https://pub.dev/packages/go_router] Notifier와 Inherited [https://flutter.github.io/samples/navigation_and_routing.html] 1 ] flutter_bloc bloc의 경우 항상 state 상태를 받기 위해서 전체 .. 2023. 9. 13.
Fluttre news toolkit Build Error Troubleshooting 안녕하세요. 올초 flutter_news_toolkit을 이제서야 설치하다가 설치중 오류가 발생했는데, 유튜브나 스택오버플로우등 많은데서 어려움을 겪고 있더라구요. 저는 다음과 같은 방법으로 해결하여 방법을 공유드립니다. This is Flutter News Toolkit build at 9 Sep. 2023 Official Doc: https://flutter.github.io/news_toolkit/ Fluter doctor -v 더보기 [✓] Flutter (Channel stable, 3.13.2, on Ubuntu 22.04.3 LTS 6.2.0-31-generic, locale en_US.UTF-8) • Flutter version 3.13.2 on channel stable at /home/.. 2023. 9. 5.