Added client name added clients desktop

This commit is contained in:
Juan Gilsanz Polo 2024-02-18 21:30:08 +01:00
parent c60b62345b
commit 568b879054

View file

@ -81,7 +81,7 @@ class _AddedClientTileState extends State<AddedClientTile> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
widget.client.ids.toString().replaceAll(RegExp(r'^\[|\]$'), ''), widget.client.name,
style: TextStyle( style: TextStyle(
fontSize: 16, fontSize: 16,
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
@ -89,6 +89,15 @@ class _AddedClientTileState extends State<AddedClientTile> {
), ),
), ),
const SizedBox(height: 8), const SizedBox(height: 8),
Text(
widget.client.ids.toString().replaceAll(RegExp(r'^\[|\]$'), ''),
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w400,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
),
const SizedBox(height: 8),
Row( Row(
children: [ children: [
Icon( Icon(