No description
Find a file
2021-06-12 15:50:23 +02:00
android with all icons 2021-06-12 15:50:23 +02:00
ios with all icons 2021-06-12 15:50:23 +02:00
lib fixed some breaking changes switching flutter version 2021-06-12 14:30:52 +02:00
media with all icons 2021-06-12 15:50:23 +02:00
test added some simple tests for Months class 2020-10-20 17:22:48 +02:00
.drone.yml removed chown from .drone 2021-06-12 14:35:07 +02:00
.gitignore Added gradle to .gitignore 2020-05-10 16:39:05 +02:00
.metadata First commit, just the template 2020-05-10 16:40:38 +02:00
pubspec.yaml added flutter_launcher_icon package for easy app icon management 2021-06-12 15:49:37 +02:00
README.md added proper readme 2021-01-11 20:01:28 +01:00

OhThatsA Build Status

An app to help you learn how to calculate day of the week from any date.

App

main year_instruction month_practice

Mostly made to try out Dart/Flutter.

Method

The day of the week can be caculated by:
(day value + month value + year value + century value + leap year value) % 7

Every one of these value comes from a set of constants or is calculable from the date.
This app helps you practice memorizing and calculating these values.