buildDeviceRow function

Widget buildDeviceRow(
  1. BuildContext context
)

Implementation

Widget buildDeviceRow(
  BuildContext context,
) {
  return buildStatusRow(
    color: context.appColors.green,
    title: context.sharedL10n.devicestatus,
    label: context.sharedL10n.connected,
    icon: KohlerIcons.connected,
    context: context,
  );
}