Added 'go back' functionality and fileinfos to Fileviewer
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class OfflineBanner extends StatelessWidget {
|
||||
class ErrorView extends StatelessWidget {
|
||||
final IconData icon;
|
||||
final String text;
|
||||
const OfflineBanner({Key? key, this.icon = Icons.report_gmailerrorred, this.text = "Es ist ein Fehler aufgetreten!"}) : super(key: key);
|
||||
const ErrorView({Key? key, this.icon = Icons.report_gmailerrorred, this.text = "Es ist ein Fehler aufgetreten!"}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
Reference in New Issue
Block a user