Initial commit

This commit is contained in:
exttex 2020-06-23 21:23:12 +02:00
commit ed087bc583
123 changed files with 10390 additions and 0 deletions

26
lib/ui/error.dart Normal file
View file

@ -0,0 +1,26 @@
import 'package:flutter/material.dart';
class ErrorScreen extends StatelessWidget {
final String message;
ErrorScreen({this.message});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Icon(
Icons.error,
color: Colors.red,
size: 64.0,
),
Container(height: 4.0,),
Text(message ?? 'Please check your connection and try again later...')
],
),
);
}
}