It returns a SearchBar in whole AppBar but I need a Search Bar with border. Please see the Example Below:
https://i.stack.imgur.com/O1NRb.png
I do need a SearchBar of this design. How can I do it?....
It returns a SearchBar in whole AppBar but I need a Search Bar with border. Please see the Example Below:
https://i.stack.imgur.com/O1NRb.png
I do need a SearchBar of this design. How can I do it?....
What you're doing looks pretty strange to me, consider implementing the search bar the proper way, as show in this article: https://dev.to/luizeduardotj/search-bar-in-flutter-33e1
You can do this by using a
TextField
and styling it according to your needs.Inside AppBar, I've used a
Row
for thetitle
parameter. Inside thatRow
, I have the title text and the searchbar textfield.Code:
You can style it further according to your application.
Image: