mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-31 11:52:16 +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),
|
||||
itemBuilder: (context, index) => ListTile(
|
||||
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),
|
||||
isThreeLine: true,
|
||||
onLongPress: () => openOptionsModal(clientsScreen[index]),
|
||||
|
@ -342,7 +342,7 @@ class _SearchClientsWidgetState extends State<SearchClientsWidget> {
|
|||
: null,
|
||||
trailing: Text(autoClientsScreen[index].source),
|
||||
padding: index == 0
|
||||
? const EdgeInsets.symmetric(horizontal: 20)
|
||||
? const EdgeInsets.only(left: 20, right: 20, bottom: 15)
|
||||
: null,
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue