Minor change

This commit is contained in:
Juan Gilsanz Polo 2022-10-25 21:17:05 +02:00
parent 753b73905a
commit 7ab9961532

View file

@ -64,7 +64,9 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
return Scaffold(
appBar: AppBar(
title: searchActive == true
? TextFormField(
? Padding(
padding: const EdgeInsets.only(bottom: 3),
child: TextFormField(
controller: searchController,
onChanged: search,
decoration: InputDecoration(
@ -79,6 +81,7 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
fontWeight: FontWeight.normal,
fontSize: 18
),
),
)
: Text(widget.title),
leading: searchActive == true ?