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
- Python
- 포인터
- 자바
- DOM
- 가상환경
- JavaScript
- Django
- 부스트코스
- 건대입구맛집
- 코딩독학
- FLUTTER
- 알고리즘
- 컴퓨터과학
- popupmenubutton
- 노마드코더
- 장고
- 아스키코드
- 속초여행
- c언어문자열
- 강원도속초맛집
- 상속
- 정렬알고리즘
- richtext
- pipenv
- BeautifulSoup
- 남양주맛집
- 추상클래스
- python3
- removetooltip
- 성수동카페
Archives
- Today
- Total
YUYANE
FLUTTER / Remove Tooltip of PopupMenuButton Widget 본문
출처 : 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: TooltipThemeData(
decoration: BoxDecoration(
color: Colors.transparent
)
)
),
child: PopupMenuButton(
elevation: 0,
tooltip: "",
icon: Row(
children: [
Text('ㅁㅁ',style: TextStyle(fontWeight: FontWeight.bold),
),
AnimatedBuilder(animation: _arrowAnimationController, builder: (context, child)=>Transform.rotate(
angle: _arrowAnimation.value,
child: Icon(
Icons.arrow_drop_down,
),
)),
],
),
itemBuilder: (context)=>[
PopupMenuItem(
child: Text('first'),
value: 'first',
),
PopupMenuItem(
child: Text('first'),
value: 'first',
),
]),
),
'Framework > FLUTTER' 카테고리의 다른 글
FLUTTER/ Drawer, Expanded, Responsive (0) | 2021.05.06 |
---|---|
FLUTTER / Stack, RichText, Navigator (0) | 2021.05.05 |
Comments