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
- fastapi를 사용한 파이썬 웹 개발
- Widget
- Image Processing
- Got
- FastAPI
- C++
- Kaggle
- BAEKJOON
- ARM
- DART
- MATLAB
- 영상처리
- MDP
- Computer Architecture
- system hacking
- llm을 활용 단어장 앱 개발일지
- rao
- Stream
- ML
- Algorithm
- Flutter
- bloc
- pytorch
- BOF
- study book
- BFS
- PCA
- Dreamhack
- 백준
- 파이토치 트랜스포머를 활용한 자연어 처리와 컴퓨터비전 심층학습
Archives
- Today
- Total
목록BottomSheet (1)
Bull

편의상 작업하던 프로젝트에서 예제를 적용하여 보이겠습니다.1. AlertDialog가장 일반적인 다이얼로그로, 경고 메시지나 중요한 정보를 사용자에게 알릴 때 사용한다. 제목(title), 내용(content), 그리고 하나 이상의 버튼(actions)으로 구성된다.showDialog( context: context, builder: (BuildContext context) { return AlertDialog( title: Text('AlertDialog Title'), backgroundColor: Colors.white, content: Text('This is the content of the AlertDialog.'), actions: [ ..
Software Framework/Flutter
2024. 8. 27. 03:06