Basic layout, navigation, first empty pages
This commit is contained in:
15
lib/screens/dashboard_screen.dart
Normal file
15
lib/screens/dashboard_screen.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class DashboardScreen extends StatefulWidget {
|
||||
const DashboardScreen({super.key});
|
||||
|
||||
@override
|
||||
State<DashboardScreen> createState() => _DashboardScreenState();
|
||||
}
|
||||
|
||||
class _DashboardScreenState extends State<DashboardScreen> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Text("Dashboard");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user