added routing

This commit is contained in:
SomnusVeritas
2023-10-02 19:02:14 +02:00
parent f6cfc31036
commit ef2ffc3e14
2 changed files with 19 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class Dashboard extends StatelessWidget {
const Dashboard({super.key});
static const routeName = '/';
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Dashboard'),
),
);
}
}