|
|
|
|
@ -13,6 +13,7 @@ class DeviceTransferItem extends StatelessWidget {
|
|
|
|
|
final int index;
|
|
|
|
|
final DeviceTransfer item;
|
|
|
|
|
final Function(DeviceTransfer) onPressed;
|
|
|
|
|
|
|
|
|
|
const DeviceTransferItem({Key key, this.item, this.onPressed, this.index}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
@ -59,6 +60,13 @@ class DeviceTransferItem extends StatelessWidget {
|
|
|
|
|
Divider(
|
|
|
|
|
color: onItemColor,
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
item.device.assetName ?? "",
|
|
|
|
|
style: Theme.of(context).textTheme.headline6.copyWith(color: onItemColor, fontSize: 16, fontWeight: FontWeight.bold),
|
|
|
|
|
),
|
|
|
|
|
Divider(
|
|
|
|
|
color: onItemColor,
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
|