mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-06-04 05:40:20 +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(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: searchActive == true
|
title: searchActive == true
|
||||||
? TextFormField(
|
? Padding(
|
||||||
controller: searchController,
|
padding: const EdgeInsets.only(bottom: 3),
|
||||||
onChanged: search,
|
child: TextFormField(
|
||||||
decoration: InputDecoration(
|
controller: searchController,
|
||||||
hintText: AppLocalizations.of(context)!.search,
|
onChanged: search,
|
||||||
hintStyle: const TextStyle(
|
decoration: InputDecoration(
|
||||||
|
hintText: AppLocalizations.of(context)!.search,
|
||||||
|
hintStyle: const TextStyle(
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize: 18
|
||||||
|
),
|
||||||
|
border: InputBorder.none,
|
||||||
|
),
|
||||||
|
style: const TextStyle(
|
||||||
fontWeight: FontWeight.normal,
|
fontWeight: FontWeight.normal,
|
||||||
fontSize: 18
|
fontSize: 18
|
||||||
),
|
),
|
||||||
border: InputBorder.none,
|
|
||||||
),
|
),
|
||||||
style: const TextStyle(
|
)
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize: 18
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: Text(widget.title),
|
: Text(widget.title),
|
||||||
leading: searchActive == true ?
|
leading: searchActive == true ?
|
||||||
IconButton(
|
IconButton(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue