mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 21:35:32 +00:00
11 lines
270 B
Dart
11 lines
270 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ErrorText extends StatelessWidget {
|
|
final dynamic errorText;
|
|
const ErrorText(this.errorText, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(child: Text(errorText.toString()));
|
|
}
|
|
}
|