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