1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-15 11:00:45 +01:00

15 lines
427 B
Dart
Raw Normal View History

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';
import '../generated/l10n.dart';
class NotFoundScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
2019-09-25 17:06:36 +08:00
return SingleScaffold(
title: AppBarTitle(S.of(context).notFoundMessage),
body: Text(S.of(context).notFoundTextDisplay),
);
}
}