일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- nestjs공부
- JPA공부
- JPA
- 기술공부
- DDD
- JPA예제
- 스프링
- 기술면접공부
- querydsl
- 자료구조공부
- 플러터 개발
- 코테공부
- 스프링부트공부
- 플러터 공부
- 스프링부트
- Axon framework
- 알고리즘공부
- Kafka
- 스프링공부
- 카프카
- 코테준비
- nestjs스터디
- K8S
- 프로그래머스
- Flutter
- JPA스터디
- JPA 공부
- 자바공부
- 스프링 공부
- nestjs
- Today
- Total
목록플러터 팝업 구현 (2)
DevBoi
아래와 같이 플러팅 버튼을 누를때, 다이얼 로그 에 대한 노출을 한다. 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..
1. 별도 메소드 작성 Future _dialogBuilder(BuildContext context) { return showDialog( context: context, builder: (BuildContext context) { return AlertDialog( title: const Text('Basic dialog title'), content: const Text( 'A dialog is a type of modal window that\n' 'appears in front of app content to\n' 'provide critical information, or prompt\n' 'for a decision to be made.', ), actions: [ TextButton( sty..