Changed standard text to selectable text

This commit is contained in:
2023-09-29 16:35:10 +05:30
parent 0a7eb9884d
commit a3864b7e70

View File

@@ -47,8 +47,8 @@ class ItemCard extends StatelessWidget {
),
child: Row(mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [
Column(crossAxisAlignment: CrossAxisAlignment.start, children: [
Text(this.itemName, style: const TextStyle(fontSize: 25)),
Text(this.itemType, style: const TextStyle(fontSize: 15)),
SelectableText(this.itemName, style: const TextStyle(fontSize: 25)),
SelectableText(this.itemType, style: const TextStyle(fontSize: 15)),
]),
vegClassIcon,
]),