반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- DDD
- 코테준비
- 플러터 공부
- Kafka
- JPA스터디
- JPA
- 자료구조공부
- 알고리즘공부
- 스프링부트공부
- nestjs공부
- Axon framework
- 자바공부
- 스프링
- K8S
- Flutter
- 기술면접공부
- 스프링부트
- nestjs
- 기술공부
- JPA공부
- nestjs스터디
- 플러터 개발
- querydsl
- 스프링공부
- 프로그래머스
- JPA 공부
- JPA예제
- 카프카
- 코테공부
- 스프링 공부
Archives
- Today
- Total
목록플러터 저장 (1)
DevBoi
[Flutter] shared_preferences 사용
1. 의존성 추가 shared_preferences: ^2.2.0 2. 텍스트 받을 위젯 세팅 final _contentEditController = TextEditingController(); child: TextField( controller: _contentEditController, style: TextStyle(color: Colors.black), decoration: InputDecoration( border: InputBorder.none, hintText: '메모를 입력해주세요', hintStyle: TextStyle(color: Colors.grey[300])), cursorColor: Colors.blue, ), 3. 인스턴스 초기화 (대부분 State단에서 선언) final Futu..
[Mobile]/[Flutter]
2023. 7. 23. 22:37