mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-06-01 04:12:16 +00:00
Minor change
This commit is contained in:
parent
753b73905a
commit
7ab9961532
1 changed files with 15 additions and 12 deletions
|
@ -64,22 +64,25 @@ class _TopItemsScreenState extends State<TopItemsScreen> {
|
|||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: searchActive == true
|
||||
? TextFormField(
|
||||
controller: searchController,
|
||||
onChanged: search,
|
||||
decoration: InputDecoration(
|
||||
hintText: AppLocalizations.of(context)!.search,
|
||||
hintStyle: const TextStyle(
|
||||
? Padding(
|
||||
padding: const EdgeInsets.only(bottom: 3),
|
||||
child: TextFormField(
|
||||
controller: searchController,
|
||||
onChanged: search,
|
||||
decoration: InputDecoration(
|
||||
hintText: AppLocalizations.of(context)!.search,
|
||||
hintStyle: const TextStyle(
|
||||
fontWeight: FontWeight.normal,
|
||||
fontSize: 18
|
||||
),
|
||||
border: InputBorder.none,
|
||||
),
|
||||
style: const TextStyle(
|
||||
fontWeight: FontWeight.normal,
|
||||
fontSize: 18
|
||||
),
|
||||
border: InputBorder.none,
|
||||
),
|
||||
style: const TextStyle(
|
||||
fontWeight: FontWeight.normal,
|
||||
fontSize: 18
|
||||
),
|
||||
)
|
||||
)
|
||||
: Text(widget.title),
|
||||
leading: searchActive == true ?
|
||||
IconButton(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue