반응형
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
- 스프링
- Flutter
- 스프링 공부
- 스프링부트
- K8S
- 플러터 개발
- JPA공부
- 코테준비
- 코테공부
- 스프링공부
- querydsl
- nestjs공부
- 자료구조공부
- 기술공부
- JPA
- 자바공부
- JPA스터디
- 스프링부트공부
- 프로그래머스
- 플러터 공부
- nestjs스터디
- 카프카
- Kafka
- Axon framework
- JPA예제
- nestjs
- 알고리즘공부
- JPA 공부
- 기술면접공부
- DDD
Archives
- Today
- Total
목록플러터 분리 (1)
DevBoi
[Flutter] 위젯 별로 공통 함수로 분류하기
플러터는 소스가 너무 길어진다. 그래서 관리하기도 어렵고 소스를 이해하기도, 유지보수하기도, 그리고...가독성도 떨어진다. 그래서 유틸성으로 개발해서 관리해보자 class WidgetUtil{ Widget getListView(List persons){ return ListView.builder( shrinkWrap: true, itemCount: persons.length, itemBuilder: (BuildContext context,int index){ return Container( height: 50, child: Text(persons[index].id), ); }); } } Container( child: new WidgetUtil().getListView(persons), ) ,Contai..
[Mobile]/[Flutter]
2023. 7. 16. 01:02