일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- AppleSilicon
- 데스크테리어
- swift
- M1
- AppBar
- ios
- TextField
- GetX
- Android
- xcode
- datetime
- 내돈내산
- 데스크셋업
- react
- listview
- database
- VSCode
- wrap
- 라이언
- list
- visualstudiocode
- Git
- GitHub
- 춘식
- 카카오
- 플러터
- Flutter
- sqflite
- 간단리뷰
- error
- Today
- Total
목록Flutter (45)
welcome to my blog
- 선언 RxMap fruitsMap = {tr("Apple") : true, tr("Banana"): false}.obs; - 값 변경(update) fruitsMap.update("Apple", (value) => !value);

위젯 개수에 따라서 알아서 줄바꿈이 되는 좋은 위젯 https://stackoverflow.com/questions/50096734/flow-layout-in-flutter-example Flow Layout in flutter example i want to implement flow layout in flutter i found a class called FLOW in sdk but unable to find sample code on how to use it here is the layout i am trying to achieve stackoverflow.com

textButtonTheme: TextButtonThemeData( style: ButtonStyle( padding: MaterialStateProperty.all(EdgeInsets.fromLTRB(0, 30, 0, 30)), minimumSize: MaterialStateProperty.all(Size(double.maxFinite, 50)), textStyle: MaterialStateProperty.all(TextStyle(fontSize: 30)), foregroundColor: MaterialStateProperty.all(Color(0xffFFF5DE)), side: MaterialStateProperty.all( BorderSide(color: Color(0xff393e7d), width..

color값 보는 방법 (with colorzila) https://chrome.google.com/webstore/detail/colorzilla/bhlhnicpbhignbdhedgjhgdocnmhomnp?hl=ko ColorZilla Advanced Eyedropper, Color Picker, Gradient Generator and other colorful goodies chrome.google.com 위 사이트에 들어가서 chrome 확장프로그램을 추가한다 우측 상단에 퍼즐모양을 클릭한다 고정해서 사용하면 편리 Pick Color From Page를 선택하고, 색상을 알고싶은 곳에 마우스를 올려놓으면 상단에 rgb값과 hex값을 알 수 있다. flutter에서 원하는 색상을 사용하려면 Colo..
flutter path 를 못찾는 경우 --> 환경변수 설정 확인필요 .zshrc 파일 열기 cd ~ open .zshrc 맨 상단에 PATH 추가 형식 : export PATH="$PATH:[PATH_TO_FLUTTER_GIT_DIRECTORY]/flutter/bin" 예시 : export PATH="$PATH:$HOME/development/flutter/bin" flutter가 설치되어있는경로를 PATH에 입력해준다. 그런다음 터미널에 source ~/.zshrc 명령어를 입력해서 수정사항을 적용시켜준다. 끝
쿡북에 camera 패키지를 사용해보라고 되어있는데 온갖 warning이 떠서 다른 패키지를 알아보던차에 image_picker를 알게되었다 image_picker를 사용하면 간단하게 사진촬영도 할수있고 갤러리에서 이미지도 가져올수있다. 1. 패키지 설치 flutter pub add image_picker image_picker: ^0.8.4+4 import 'package:image_picker/image_picker.dart'; import 해서 사용 2. 카메라 권한설정 //android/gradle.properties android.useAndroidX=true android.enableJetifier=true //android/app/src/debug //android/app/src/profi..