import 'package:flutter/cupertino.dart'; // Klasse für die Erstellung eines Fehler-Widgets mit einer Fehlermeldung class ErrWidget extends StatelessWidget { final String errorMessage; // Fehlermeldung, die angezeigt werden soll const ErrWidget({super.key, required this.errorMessage}); @override Widget build(BuildContext context) { return Row( mainAxisAlignment: MainAxisAlignment.center, children: [ const Icon( CupertinoIcons.exclamationmark_circle_fill, color: CupertinoColors.systemRed, ), const SizedBox(width: 8), Text( errorMessage, style: const TextStyle( color: CupertinoColors.systemRed, fontWeight: FontWeight.bold, ), ), ], ); } }