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
- 피보나치 함수
- useEffect
- React.memo
- 사탕게임
- TextFormField
- 프로그래머스
- ZOD
- next-auth
- Python
- typescript
- 리팩토링
- custom hook
- Vanilla JavaScript
- storybook
- react
- 백준
- suffixicon
- interaction test
- 이메일 인증
- visual test
- javascript
- useMemo
- locale data
- Props Drilling
- Github Actions
- React-hook-form
- next.js
- context api
- kakao blind recruitment
- Flutter
Archives
- Today
- Total
목록stack (1)
Dev Diary

위 이미지처럼 달력을 구현해야했는데, 오른쪽 상단에 x 아이콘(누르면 달력이 닫힌다)을 넣으려고 Stack과 Positioned 위젯을 사용했다.아래처럼 작성했는데, 아무리 x 아이콘을 눌러보아도 "닫기"가 터미널에 출력이 되지 않았다. Stack( children: [ Positioned( top: 24, right: 20, child: GestureDetector( onTap: () { print("닫기"); Navigator.pop(context); }, child: SvgPi..
Trouble Shooting
2024. 3. 11. 21:31