반응형
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
- K8S
- JPA예제
- 스프링공부
- JPA 공부
- JPA스터디
- 프로그래머스
- 코테공부
- 카프카
- 스프링부트공부
- 알고리즘공부
- 스프링
- 기술면접공부
- 스프링 공부
- 자료구조공부
- Axon framework
- 플러터 공부
- JPA
- Kafka
- nestjs
- nestjs스터디
- 코테준비
- Flutter
- JPA공부
- 스프링부트
- querydsl
- nestjs공부
- 기술공부
- 플러터 개발
- 자바공부
Archives
- Today
- Total
목록플러터 알림 (1)
DevBoi
[Flutter] 팝업 구현
팝업창은 간혹 필요하여 모듈로 구현하면 편하다. showDialog( context: context, barrierDismissible: true, // 바깥 영역 터치시 닫을지 여부 builder: (BuildContext context) { return AlertDialog( content: CreateGroupPopUp(userId: userId), insetPadding: const EdgeInsets.fromLTRB(0,80,0, 80), ); } ); 단순히 이렇게 하고, content 클래스를 구현해주면 된다. import 'package:flutter/material.dart'; import 'package:flutter_form_builder/flutter_form_builder.dart..
[Mobile]/[Flutter]
2023. 8. 26. 20:28