ELEC60013-ES-CW1/lib/view/data_page.dart
Benjamin Ramhorst e21ae2e36d mend
2022-02-09 17:07:59 +00:00

10 lines
219 B
Dart

import 'package:flutter/material.dart';
class DataPage extends StatelessWidget {
const DataPage({ Key? key }) : super(key: key);
@override
Widget build(BuildContext context) {
return Text("Data Page");
}
}