renderUnknown method

dynamic renderUnknown(
  1. dynamic context,
  2. dynamic ref
)

Implementation

Widget renderUnknown(BuildContext context, WidgetRef ref) {
  return Skeletonizer(
    child: Card(
      child: ListTile(
        leading: const Icon(Icons.warning),
        title: Text(L10n.of(context).encryptionBackupMissing),
        subtitle: Text(L10n.of(context).encryptionBackupMissingExplainer),
        trailing: OutlinedButton(
          onPressed: () {},
          child: Text(L10n.of(context).loading),
        ),
      ),
    ),
  );
}