일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- M1
- GitHub
- AppBar
- xcode
- 간단리뷰
- datetime
- 내돈내산
- visualstudiocode
- 데스크셋업
- react
- 라이언
- wrap
- sqflite
- Android
- Flutter
- error
- database
- listview
- VSCode
- swift
- Git
- 데스크테리어
- 카카오
- TextField
- AppleSilicon
- GetX
- ios
- list
- 플러터
- 춘식
- Today
- Total
목록GetX (5)
welcome to my blog
분명히 Controller도 binding 시켜주고 obs 선언도 해주었는데 값을 바꾸었을때 연결된 UI가 업데이트가 안되는거다!! 며칠간 삽질했는데 어이없게도 상위위젯을 GetX로 감싸주지않아서 안됐었음..hahahahahahahaahaaaaaa 수정해주니 잘 된다. 원래 소스 : title : Text(widget.itemText, style: widget.isChecked? TextStyle( decoration: TextDecoration.lineThrough, color: Colors.grey, fontSize: controller.fontSize.value.toDouble()) : TextStyle(fontSize: controller.fontSize.value.toDouble()))) 수정된..
에러 : [Get] the improper use of a GetX has been detected. You should only use GetX or Obx for the specific widget that will be updated. If you are seeing this error, you probably did not insert any observable variables into GetX/Obx or insert them outside the scope that GetX considers suitable for an update (example: GetX => HeavyWidget => variableObservable). If you need to update a parent widge..
일정관리 어플을 만들어보면서 헷갈렸던 부분이나 까먹을것 같은 내용 정리 전체 코드는 하단참고 만들 기능 : 1. 텍스트박스에 글씨를 적고 Add버튼을 누르면 하단에 내용이 추가된다. 2. 휴지통 모양의 버튼을 누르면 해당 항목이 삭제된다. 3. 체크박스를 클릭하면 완료되었다는 의미로 취소선을 표시한다. 사용라이브러리 : GetX //version get 4.3.8 //command flutter pub add get //pubspec.yaml dependencies: get: ^4.3.8 1. UI 구성 필요한 위젯 : 스케쥴 입력 부분 : Textfield(입력) / TextButton(추가) / Divider(없어도됨) 등록된 스케쥴 표시 부분 : ListView(목록표시) / ListTile(Lis..
getX 를 이용하여 간단한 Counter App을 작성해보자 get 설치 : 사용버전 4.3.8 flutter pub add get 사용 : import 'package:get/get.dart'; Flutter의 새 프로젝트에서 기본적으로 생성된 "카운터" 프로젝트에는 100줄 이상(주석 포함)이 있습니다. Get의 힘을 보여주기 위해 클릭할 때마다 상태를 변경하는 "카운터"를 만드는 방법, 페이지 간에 전환하고 화면 간에 상태를 공유하는 방법을 모두 조직적인 방식으로 보여주고 비즈니스 논리를 보기에서 분리합니다. 주석을 포함한 26개의 라인 코드. 요약 : 카운터앱 만들기( 페이지 전환 / 상태공유 / 비즈니스 로직 분리 )를 할것이다. class Controller extends GetxContro..
getX : (사용버전 4.3.8) GetX is an extra-light and powerful solution for Flutter. It combines high-performance state management, intelligent dependency injection, and route management quickly and practically. GetX는 Flutter를 위한 초경량의 강력한 솔루션입니다. 고성능 상태 관리, 지능형 종속성 주입 및 경로 관리를 빠르고 실질적으로 결합합니다. 상태관리, 경로관리(페이지이동)을 빠르고 쉽게 도와줌 설치 커맨드 : $ flutter pub add get 다음을 import 해서 사용 import 'package:get/get.dart'; 기..