No description
Find a file
2021-06-12 14:35:07 +02:00
android changed name of app in android 2020-12-28 15:57:56 +01:00
ios changed name of app in ios 2020-12-28 15:58:03 +01:00
lib fixed some breaking changes switching flutter version 2021-06-12 14:30:52 +02:00
media/img added proper readme 2021-01-11 20:01:28 +01: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 updated pubspec 2021-06-12 14:29:26 +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.