how to change the tigger widget? #2
Unanswered
JasonWithJson
asked this question in
Q&A
Replies: 1 comment
-
To change the trigger widget, you can use the PromptedChoice(
...,
anchorBuilder: (state, openPrompt) {
return YourTriggerWidget(
onTap: openPrompt,
);
},
) Also, you can use the customizable default trigger builder PromptedChoice(
...,
anchorBuilder: ChoiceAnchor.create(valueTruncate: 1),
) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
how to change the tigger widget
Beta Was this translation helpful? Give feedback.
All reactions