Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sinej/flutter-date
flutter-date
https://github.com/sinej/flutter-date
Last synced: 2 days ago
JSON representation
flutter-date
- Host: GitHub
- URL: https://github.com/sinej/flutter-date
- Owner: sinej
- Created: 2024-05-17T04:51:59.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-17T08:59:01.000Z (6 months ago)
- Last Synced: 2024-05-17T09:53:19.504Z (6 months ago)
- Language: Dart
- Size: 868 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 프로젝트 목표
- DateTime 실전
- MediaQuery 사용해보기
- DatePicker 사용해보기
- 여러개의 위젯으로 코드 정리하기
- 폰트 적용해보기
- 테마 사용해보기SizeBox
MediaQuery vs Double.infinity
너비만큼 mediaQuery에서 width값으로 나눌 수 있다.
```
// MediaQuery
body: SizeBox(
width: MediaQuery.of(context).size.width,
// width: MediaQuery.of(context).size.width, / 2 반 만큼
// width: MediaQuery.of(context).size.width, / 3 1/3 만큼
)// Double.infinity
body: SizeBox(
width: Doublue.infinity,
)
```dev.2024.05.17