mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-14 22:12:53 +00:00
Changed design dns rewrites
This commit is contained in:
parent
cddc964276
commit
665eb5a0c2
1 changed files with 58 additions and 60 deletions
|
@ -123,15 +123,11 @@ class _DnsRewritesScreenState extends State<DnsRewritesScreen> {
|
||||||
child: ListView.builder(
|
child: ListView.builder(
|
||||||
padding: const EdgeInsets.only(top: 0),
|
padding: const EdgeInsets.only(top: 0),
|
||||||
itemCount: rewriteRulesProvider.rewriteRules!.length,
|
itemCount: rewriteRulesProvider.rewriteRules!.length,
|
||||||
itemBuilder: (context, index) => Container(
|
itemBuilder: (context, index) => Card(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 10),
|
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
||||||
decoration: BoxDecoration(
|
child: Padding(
|
||||||
border: Border(
|
padding: const EdgeInsets.only(
|
||||||
bottom: BorderSide(
|
left: 16, top: 16, bottom: 16, right: 8
|
||||||
width: 1,
|
|
||||||
color: Theme.of(context).colorScheme.outline.withOpacity(0.2)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
@ -185,10 +181,12 @@ class _DnsRewritesScreenState extends State<DnsRewritesScreen> {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
icon: const Icon(Icons.delete)
|
icon: const Icon(Icons.delete),
|
||||||
|
tooltip: AppLocalizations.of(context)!.delete,
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue