ohthatsa_old/lib/main.dart
2020-06-11 22:02:19 +02:00

25 lines
520 B
Dart

import 'package:flutter/material.dart';
import 'package:ohthatsa/YearsPage.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",
initialRoute: '/monthValues',
routes: {
'/monthValues': (context) => MonthValuesPage(),
'/years': (context) => YearsPage(),
}
);
}
}