1
0
mirror of https://github.com/git-touch/git-touch synced 2025-03-06 12:17:50 +01:00

16 lines
405 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2019-09-11 19:59:47 +08:00
import 'package:git_touch/widgets/app_bar_title.dart';
import '../scaffolds/simple.dart';
class NotFoundScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SimpleScaffold(
2019-09-11 19:59:47 +08:00
title: AppBarTitle('Not Found'),
bodyBuilder: () {
return Text('Woops, This page is not implemented yet');
},
);
}
}