Replies: 1 comment
-
|
This is how did it. CustomToolbarItem(
inToolbarBuilder: (context) => SizedBox(
width: 200,
child: MacosSearchField(
onChanged: (value) async {
Item? activeItem = await navigationList?.getActiveItem();
if (!isDisposed && mounted && activeItem != null) {
_streamingSearchResults(value, activeItem);
}
},
),
),
),
|
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
Uh oh!
There was an error while loading. Please reload this page.
-
I want create search filed in toolbar.
like finder.
how to make it? any hint plz.
Beta Was this translation helpful? Give feedback.
All reactions