yubioath-flutter/lib/error_page.dart

27 lines
607 B
Dart
Raw Normal View History

2021-11-19 17:05:57 +03:00
import 'package:flutter/material.dart';
class ErrorPage extends StatelessWidget {
final String error;
const ErrorPage({required this.error, Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Application error'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
error,
style: Theme.of(context).textTheme.headline4,
),
],
),
),
);
}
}