I implemented a SearchAppBar using SearchDelegate of Material and changed the hint text default of the Search Delegate using the responses from this question.
But, I'm having the problem of can't change the font style of the hint text at the search field, that is displayed as showed on the image below:
I already have the style I want implemented and am using this style in another fonts of my app, but I want to apply this style to this hint text too to don't break with the style guide of the application.
Code that I'm using for changing the default message of Search Delegate:
class SearchRoomAppBar extends SearchDelegate {
SearchRoomAppBar() : super(
searchFieldLabel: "Search user",
keyboardType: TextInputType.text,
textInputAction: TextInputAction.search,
);
}