mirror of
https://github.com/git-touch/git-touch
synced 2024-12-17 10:48:50 +01:00
16 lines
405 B
Dart
16 lines
405 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'),
|
|
bodyBuilder: () {
|
|
return Text('Woops, This page is not implemented yet');
|
|
},
|
|
);
|
|
}
|
|
}
|