Changed style lists

This commit is contained in:
Juan Gilsanz Polo 2022-10-21 02:06:53 +02:00
parent 682e9d49f5
commit 979b8b0729
7 changed files with 114 additions and 184 deletions

View file

@ -25,7 +25,12 @@ class DnsAddressesModal extends StatelessWidget {
width: double.minPositive,
child: ListView(
children: dnsAddresses.map((address) => ListTile(
title: Text(address),
title: Text(
address,
style: const TextStyle(
fontWeight: FontWeight.normal
),
),
)).toList(),
),
),