mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-06-02 04:42:34 +00:00
Fixed paddings issue
This commit is contained in:
parent
a63bdd520d
commit
d816bc2319
1 changed files with 2 additions and 2 deletions
|
@ -263,7 +263,7 @@ class _SearchClientsWidgetState extends State<SearchClientsWidget> {
|
||||||
padding: const EdgeInsets.only(bottom: 0),
|
padding: const EdgeInsets.only(bottom: 0),
|
||||||
itemBuilder: (context, index) => ListTile(
|
itemBuilder: (context, index) => ListTile(
|
||||||
contentPadding: index == 0
|
contentPadding: index == 0
|
||||||
? const EdgeInsets.symmetric(horizontal: 20, vertical: 0)
|
? const EdgeInsets.only(left: 20, right: 20, bottom: 15)
|
||||||
: const EdgeInsets.symmetric(horizontal: 20, vertical: 15),
|
: const EdgeInsets.symmetric(horizontal: 20, vertical: 15),
|
||||||
isThreeLine: true,
|
isThreeLine: true,
|
||||||
onLongPress: () => openOptionsModal(clientsScreen[index]),
|
onLongPress: () => openOptionsModal(clientsScreen[index]),
|
||||||
|
@ -342,7 +342,7 @@ class _SearchClientsWidgetState extends State<SearchClientsWidget> {
|
||||||
: null,
|
: null,
|
||||||
trailing: Text(autoClientsScreen[index].source),
|
trailing: Text(autoClientsScreen[index].source),
|
||||||
padding: index == 0
|
padding: index == 0
|
||||||
? const EdgeInsets.symmetric(horizontal: 20)
|
? const EdgeInsets.only(left: 20, right: 20, bottom: 15)
|
||||||
: null,
|
: null,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue