mirror of
https://github.com/git-touch/git-touch
synced 2024-12-16 18:28:51 +01:00
14 lines
370 B
Dart
14 lines
370 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:git_touch/widgets/app_bar_title.dart';
|
|
import '../scaffolds/simple.dart';
|
|
|
|
class NotFoundScreen extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SimpleScaffold(
|
|
title: AppBarTitle('Not Found'),
|
|
child: Text('Woops, This page is not implemented yet'),
|
|
);
|
|
}
|
|
}
|