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 |
Tags
- pwnable
- CODEGATE2018
- npm
- Hacking
- xlsx
- doorlock
- NGINX
- BLUETOOTH
- https설정
- Git
- openctf
- 도메인 https
- shellcraft
- lob
- CVE
- Codegate
- codegate2017
- gogs private git
- 코드게이트2017
- blueborne
- 노드 엑셀
- node.js
- gogs
- module
- 코드게이트
- pwntools
- Branch
- 코드게이트 주니어
- https
- node
Archives
- Today
- Total
고졸백수해킹일기
flutter showDialog 본문
showDialog<String>(
context: context,
builder: (BuildContext context) => AlertDialog(
title: const Text('AlertDialog Title'),
content: const Text('AlertDialog description'),
actions: <Widget>[
TextButton(
onPressed: () => Navigator.pop(context, 'Cancel'),
child: const Text('Cancel'),
),
TextButton(
onPressed: () => Navigator.pop(context, 'OK'),
child: const Text('OK'),
),
],
),
),
//alert 창 맹글기
//onTap같은거에 애로우 펑션으로 넣으면 된다.
'코딩' 카테고리의 다른 글
popup을 이용한 data 전달 (0) | 2022.12.10 |
---|---|
flutter 오늘의 깨우침 (0) | 2021.09.18 |
flutter 설치 시 --android-licenses 이슈 (0) | 2021.08.22 |
삽입정렬 (insertion sort) (0) | 2018.06.11 |
쉘 정렬 (shell sort) (0) | 2018.06.11 |