Monthly Calendar - No API

This commit is contained in:
kconnel7
2020-03-31 16:00:00 -04:00
parent bb6f0fd0e5
commit 5e4c336c4b
3 changed files with 30 additions and 2 deletions

View File

@@ -1,6 +1,10 @@
import 'package:flutter/material.dart';
import '../monthly_calendar.dart';
class Schedule extends StatelessWidget{
final calendar = Calendar();
@override
Widget build(BuildContext context) {
return StatefulBuilder(
@@ -10,7 +14,9 @@ class Schedule extends StatelessWidget{
title: Text("49ers"),
backgroundColor: Colors.green,
),
body: Text("Schedule Goes Here"),
body: Container (
child: calendar,
),
drawer: Drawer(
child: ListView(
children: <Widget>[