Skip to content

Instantly share code, notes, and snippets.

View mikemimik's full-sized avatar

Michael 'afrolion' Perrotte mikemimik

View GitHub Profile
@mikemimik
mikemimik / main.dart
Created November 25, 2016 23:30 — forked from anonymous/main.dart
calendar-proof-concept
void main() {
var now = new DateTime(2013, 1, 10);
var year = now.year;
var month = now.month;
DateTime firstDay = new DateTime(year, month, 1);
DateTime lastDay = new DateTime(year, month + 1, 0);
List<Day> monthDays = new List<Day>();