1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-16 18:28:51 +01:00
git-touch-android-ios-app/lib/screens/not_found.dart

14 lines
384 B
Dart
Raw Normal View History

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';
class NotFoundScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
2019-09-25 11:06:36 +02:00
return SingleScaffold(
2019-09-11 13:59:47 +02:00
title: AppBarTitle('Not Found'),
2019-09-25 11:06:36 +02:00
body: Text('Woops, This page is not implemented yet'),
);
}
}