No description
Find a file
2024-04-07 11:26:49 +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 added drone push to github 2024-04-07 11:26:27 +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
PRIVACY.md added privacy policy 2024-03-22 15:33:15 +00:00
pubspec.yaml added flutter_launcher_icon package for easy app icon management 2021-06-12 15:49:37 +02:00
README.md fixed typo in readme 2024-04-07 11:26:49 +02: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 calculated 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.