2019-02-08 16:41:58 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2019-09-25 11:06:36 +02:00
|
|
|
import 'package:git_touch/scaffolds/single.dart';
|
2019-09-11 13:59:47 +02:00
|
|
|
import 'package:git_touch/widgets/app_bar_title.dart';
|
2021-01-05 10:25:19 +01:00
|
|
|
import '../generated/l10n.dart';
|
2019-02-08 16:41:58 +01:00
|
|
|
|
|
|
|
class NotFoundScreen extends StatelessWidget {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2019-09-25 11:06:36 +02:00
|
|
|
return SingleScaffold(
|
2021-01-05 10:25:19 +01:00
|
|
|
title: AppBarTitle(S.of(context).notFoundMessage),
|
|
|
|
body: Text(S.of(context).notFoundTextDisplay),
|
2019-02-08 16:41:58 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|