yubioath-flutter/lib/app/views/device_avatar.dart
2022-05-12 08:34:51 +02:00

70 lines
1.9 KiB
Dart
Executable File

import 'package:flutter/material.dart';
import '../models.dart';
import 'device_images.dart';
class DeviceAvatar extends StatelessWidget {
final bool selected;
final Widget child;
final IconData? badge;
const DeviceAvatar(
{Key? key, this.selected = false, required this.child, this.badge})
: super(key: key);
factory DeviceAvatar.yubiKeyData(YubiKeyData data, {bool selected = false}) =>
DeviceAvatar(
badge: data.node is NfcReaderNode ? Icons.wifi : null,
selected: selected,
child: getProductImage(data.info, data.name),
);
factory DeviceAvatar.deviceNode(DeviceNode node, {bool selected = false}) =>
node.map(
usbYubiKey: (node) {
final info = node.info;
if (info != null) {
return DeviceAvatar.yubiKeyData(
YubiKeyData(node, node.name, info),
selected: selected,
);
}
return DeviceAvatar(
selected: selected,
child: const Icon(Icons.device_unknown),
);
},
nfcReader: (_) => DeviceAvatar(
selected: selected,
child: const Icon(Icons.wifi),
),
);
@override
Widget build(BuildContext context) {
return Stack(
alignment: AlignmentDirectional.bottomEnd,
children: [
CircleAvatar(
radius: 22,
backgroundColor: selected
? Theme.of(context).colorScheme.secondary
: Colors.transparent,
child: CircleAvatar(
backgroundColor: Theme.of(context).colorScheme.background,
child: child,
),
),
if (badge != null)
CircleAvatar(
radius: 8,
backgroundColor: Theme.of(context).colorScheme.secondary,
child: Icon(
badge!,
size: 12,
),
),
],
);
}
}