두 번째 위젯에서 팝업 메뉴를 열려면 어떻게해야합니까?PopupMenuButton을 여는 방법?
final button = new PopupMenuButton(
itemBuilder: (_) => <PopupMenuItem<String>>[
new PopupMenuItem<String>(
child: const Text('Doge'), value: 'Doge'),
new PopupMenuItem<String>(
child: const Text('Lion'), value: 'Lion'),
],
onSelected: _doSomething);
final tile = new ListTile(title: new Text('Doge or lion?'), trailing: button);
나는 tile
을 두드리고하여 button
의 메뉴를 엽니 다하고자합니다.
감사합니다. 에릭! 감사합니다. 이러한 github 문제에 설명 된 위젯은 ~을 찾고 있었다. . – DogeLion