You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
Dart
44 lines
1.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
import 'package:queuing_system/widget/data_display/app_texts_widget.dart';
|
|
|
|
|
|
class ErrorMessage extends StatelessWidget {
|
|
const ErrorMessage({
|
|
Key key,
|
|
@required this.error,
|
|
}) : super(key: key);
|
|
|
|
final String error;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SingleChildScrollView(
|
|
child: Center(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
SizedBox(
|
|
height: 100,
|
|
),
|
|
SvgPicture.asset('assets/images/svgs/no data.svg'),
|
|
Center(
|
|
child: Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(
|
|
top: 12, bottom: 12, right: 20, left: 30),
|
|
child: Center(
|
|
child: AppText(
|
|
error ?? '',
|
|
textAlign: TextAlign.center,
|
|
)),
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|