반응형
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
- 카프카
- 자바공부
- 기술공부
- K8S
- 자료구조공부
- JPA스터디
- JPA예제
- JPA
- JPA 공부
- nestjs
- 코테공부
- 스프링부트
- 플러터 개발
- JPA공부
- DDD
- 플러터 공부
- 스프링 공부
- Axon framework
- Flutter
- 스프링
- 기술면접공부
- 프로그래머스
- querydsl
- nestjs공부
- 스프링공부
- 알고리즘공부
- nestjs스터디
- 스프링부트공부
- Kafka
- 코테준비
Archives
- Today
- Total
목록플러터 쇼 다이얼로그 (1)
DevBoi
[Flutter] Dialog 콜백 값 핸들링
아래와 같이 플러팅 버튼을 누를때, 다이얼 로그 에 대한 노출을 한다. floatingActionButton: FloatingActionButton( onPressed: ((){ showDialog( context: context, builder: (BuildContext context){ return AlertDialog( content: CreatePopup(), ); }) 이후에 값을 받아올때는 아래와 같이 구현한다. showDialog( context: context, builder: (BuildContext context){ return AlertDialog( content: CreatePopup(), ); }).then((value) { setState(() { reportList = valu..
[Mobile]/[Flutter]
2023. 9. 2. 13:58