mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
20 lines
491 B
Dart
20 lines
491 B
Dart
import 'package:flutter/material.dart';
|
|
import 'global_components.dart';
|
|
|
|
class Dashboard extends StatelessWidget {
|
|
const Dashboard({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold(
|
|
body: Row(mainAxisAlignment: MainAxisAlignment.center, children: [
|
|
Column(mainAxisAlignment: MainAxisAlignment.center, children: [
|
|
Text(
|
|
"Not implemented",
|
|
style: TextStyle(fontSize: 32),
|
|
)
|
|
])
|
|
]));
|
|
}
|
|
}
|