Files
AnimSearch/lib/screens/error_screen.dart
2023-01-06 01:23:40 -06:00

74 lines
2.2 KiB
Dart

import 'package:anim_search/providers/data_provider.dart';
import 'package:anim_search/types/category_type.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
class ErrorScreen extends StatefulWidget {
late final String errorMessage;
ErrorScreen(this.errorMessage);
@override
_ErrorScreenState createState() => _ErrorScreenState();
}
class _ErrorScreenState extends State<ErrorScreen> {
Future<void> getData(CategoryType category) async {
await Provider.of<DataProvider>(context, listen: false)
.getHomeData(category: category);
}
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 150),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
Icons.error_outline,
color: Colors.black,
size: 100,
),
SizedBox(height: 10),
Text(
'An Error Occurred',
style: TextStyle(
color: Colors.black,
fontSize: 30,
fontWeight: FontWeight.w800,
),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 75, vertical: 10),
child: Text(
widget.errorMessage,
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.grey[700],
fontSize: 15,
fontWeight: FontWeight.w400,
),
),
),
ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
backgroundColor: Colors.orange,
padding: EdgeInsets.symmetric(horizontal: 25),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(5),
),
shadowColor: Colors.red,
),
child: Text('Return Home'),
onPressed: () {
setState(() {
print('refreshed');
getData(CategoryType.top);
});
})
],
),
);
}
}