ohthatsa_old/lib/main.dart
2020-06-11 21:18:07 +02:00

20 lines
348 B
Dart

import 'package:flutter/material.dart';
import 'MonthValuesPage.dart';
void main() {
runApp(OhThatsA());
}
class OhThatsA extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "OhThatsA",
home: MonthValuesPage()
);
}
}