일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바
- 알고리즘
- pipenv
- JavaScript
- 부스트코스
- popupmenubutton
- 아스키코드
- 포인터
- 남양주맛집
- 장고
- removetooltip
- 컴퓨터과학
- Python
- Django
- FLUTTER
- 건대입구맛집
- 노마드코더
- 추상클래스
- BeautifulSoup
- 가상환경
- richtext
- c언어문자열
- 강원도속초맛집
- 코딩독학
- 속초여행
- 정렬알고리즘
- 성수동카페
- python3
- DOM
- 상속
- Today
- Total
목록FLUTTER (3)
YUYANE
출처 : https://github.com/flutter/flutter/issues/60418 해당 위젯 : PopupMenuButton 클릭 시 팝업 창에 메뉴를 띄워주는 편리한 위젯. 마우스가 버튼위를 지날 때(on hover) 버튼의 기능을 설명해주는 tooltip property를 가지고 있다. 문제 tooltip을 보여주고 싶지 않은데 그 기능을 제어하는 property는 따로 없다. 해결 - PopupMenuButton 위젯을 Theme 위젯으로 감싸고, Theme 위젯에서 tooltip 컬러를 투명으로 지정하면 된다. - PopupMenuButton 위젯의 tooltip 값은 ' ' 코드 Theme( data: Theme.of(context).copyWith( tooltipTheme: Too..
출처 github.com/abuanwar072/Flutter-Responsive-Admin-Panel-or-Dashboard 1. Drawer - 모를 땐 네비게이션 메뉴를 하나하나 다 그렸는데 이렇게 간편한 위젯이 존재하다니! - api.flutter.dev/flutter/material/Drawer-class.html Scaffold( key: context.read().scaffoldKey, drawer: SideMenu(), body: SafeArea( child: Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ // We want this side menu only for large screen if (Responsive.isDes..
출처 github.com/abuanwar072/Plant-App-Flutter-UI 1. Stack 사용 방법 예시 - Stack 위젯에서 시작하면 아래에서 하나하나 쌓이는 느낌 - 원하는 위치가 있다면 Position 위젯 사용해서 위치 지정하면 됨 Container( margin: EdgeInsets.only(bottom: kDefaultPadding * 2.5), // It will cover 20% of our total height height: size.height * 0.2, child: Stack( children: [ Container( padding: EdgeInsets.only( left: kDefaultPadding, right: kDefaultPadding, bottom: 36 +..