All Projects → Routinger → routinger

Routinger / routinger

Licence: AGPL-3.0 License
Routinger is a task scheduler app that is made to make you a better person at no extra cost. The code is open-source. Dart language and Flutter framework are used extensively.

Programming Languages

dart
5743 projects
HTML
75241 projects

Projects that are alternatives of or similar to routinger

Super Productivity
To-do list & time tracker for programmers and other digital workers with Jira, Github, and Gitlab integration
Stars: ✭ 4,505 (+32078.57%)
Mutual labels:  task-manager, hacktoberfest2021
Openmangosteen
Devops定时调用http接口,定时执行SSH命令的WEB定时任务工具。
Stars: ✭ 41 (+192.86%)
Mutual labels:  task-manager, task-scheduler
Celery
Distributed Task Queue (development branch)
Stars: ✭ 18,378 (+131171.43%)
Mutual labels:  task-manager, task-scheduler
reflow
A light-weight lock-free series/parallel combined scheduling framework for tasks. The goal is to maximize parallelism in order to minimize the execution time overall.
Stars: ✭ 23 (+64.29%)
Mutual labels:  task-manager, task-scheduler
TaskManager
A C++14 Task Manager / Scheduler
Stars: ✭ 81 (+478.57%)
Mutual labels:  task-manager, task-scheduler
Rqueue
Rqueue aka Redis Queue [Task Queue, Message Broker] for Spring framework
Stars: ✭ 76 (+442.86%)
Mutual labels:  task-manager, task-scheduler
Cron Manager
A PHP cron task manager for MVC-type applications
Stars: ✭ 396 (+2728.57%)
Mutual labels:  task-manager, task-scheduler
bikeshed
Lock free hierarchical work scheduler
Stars: ✭ 78 (+457.14%)
Mutual labels:  task-manager, task-scheduler
Dramatiq
A fast and reliable background task processing library for Python 3.
Stars: ✭ 2,844 (+20214.29%)
Mutual labels:  task-manager, task-scheduler
Dramatiq dashboard
A dashboard for dramatiq, specific to its Redis broker.
Stars: ✭ 82 (+485.71%)
Mutual labels:  task-manager, task-scheduler
gronx
Lightweight, fast and dependency-free Cron expression parser (due checker), task scheduler and/or daemon for Golang (tested on v1.13 and above) and standalone usage
Stars: ✭ 206 (+1371.43%)
Mutual labels:  task-manager, task-scheduler
scheduler
Task Scheduler for Laravel applications. UI from scratch
Stars: ✭ 18 (+28.57%)
Mutual labels:  task-manager, task-scheduler
react-boilerplate-2021
No description or website provided.
Stars: ✭ 52 (+271.43%)
Mutual labels:  hacktoberfest2021
pychess-variants
Chess variants server
Stars: ✭ 137 (+878.57%)
Mutual labels:  hacktoberfest2021
weatherbes-android
An open sourced Weather App made using OpenWeatherMapAPI
Stars: ✭ 23 (+64.29%)
Mutual labels:  hacktoberfest2021
materialize
Materialize, a CSS Framework based on Material Design
Stars: ✭ 458 (+3171.43%)
Mutual labels:  hacktoberfest2021
amictl
Because you need to control your AMIs
Stars: ✭ 37 (+164.29%)
Mutual labels:  hacktoberfest2021
gdscjgec.github.io
Official Website for GDSC JGEC
Stars: ✭ 16 (+14.29%)
Mutual labels:  hacktoberfest2021
github-fest-2021
No description or website provided.
Stars: ✭ 44 (+214.29%)
Mutual labels:  hacktoberfest2021
Contactless-Attendance-System
✨ A Contactless Attendance System where your face is identified for Attendance.
Stars: ✭ 20 (+42.86%)
Mutual labels:  hacktoberfest2021

icon Routinger

This is a simple app that will allow you to schedule your tasks, create a simple to-do, and also make recurring tasks. The app ends you notifications to remind you of your tasks. The app as of now works on storing data on local storage only. It is meant to be a cross platform app.

We are constantly updating our application with the help of our contributors and feel free to open an issue if you face any problem or would like to add any new feature.

Old Look                       New Look

If you want to try out the app you can find the link to the app here. The current app version is very early and there may be errors. We recommend trying it out and telling us about your opinions in the issues or you can email to us. We will soon also make a discussions page.

List of Contents

Preview

Screens!!

image image image
Home Screen Your Stats Splash Screen
image image image
Add Tasks Set Timer Toggle Dark Mode

Dependencies

The following packages are needed for the development of this application.

  • cupertino_icons: ^1.0.2
  • provider: ^6.0.0
  • card_swiper: ^1.0.4
  • flutter_local_notifications: ^8.1.1+1
  • intl: ^0.17.0
  • flutter_native_timezone: ^2.0.0
  • sqflite: ^2.0.0+4
  • url_launcher: ^6.0.9
  • mdi: ^5.0.0-nullsafety.0
  • fl_chart: ^0.40.0
  • flutter_launcher_icons: ^0.9.2
  • flutter_native_splash: ^1.2.4

More details about these can be found in the pubspec.yaml file.

Installation

  • Clone the repository on your system.
  • Install the dependencies
  • Run flutter pub get
  • Run the application

Make sure flutter and android studio is installed properly in your system. Fork the repo. We use VS Code as our code-editor. But any code-editor is fine. Follow these steps-:

  1. Navigating to the forked repo in your code-editor and terminal

  2. Using either the debug and run command or continue without debugging

OR

  1. In terminal after navigating to the root of folder

flutter run

You can run it in an emulator or use your real android device and turn the USB-Debugging on. Your editor will be able to help you select what platform you want to run from multiple devices.

Getting Started with the project

After completing the installation locate the lib folder in the project which contains all the code files where you can make your contributions.

In the lib folder

  • The main.dart file is the entry point of the application which is responsible for executing all library functions, user-defined statements etc.
  • The screens folder contains all the screens which will be displayed in the application.
  • You can find the widgets in the widgets folder which are used to make the app interactive.

Assets Folder

  • Add your images & fonts here after adding it in pubspec.yaml file.

For Android, Ios & web

  • Make changes in Android, ios & web folder based on where you want to launch it.

Folder-Structure

The general structure of the project is as follows-:

  • Helper Directory :- All the database related functions are located in the helper directory along with a list_of_notif model used by Rountinger.
  • Provider Directory :- All the provider which app listens to is in the provider directory. This includes the task and tasks provider. The task provider is specific and contains the details for one task. While the tasks provider contains a list of tasks and handles the adding, removing, saving to local storage functions.
  • Screens Directory :- Currently the app has two screens, which are present in the screens directory. The first one is the home screen and other is a add task screen.
  • Services Directory :- All the code related to notification services are present in notifications file. While the sleep cycle manages the user sleep cycle storing the wake up time and sleep time to not show recurring notifications during the tme user sleeps.
  • Widgets Directory :- All the presentation logic is present in the widgets directory. Every thing that you see on screen has been made into a different widget file for easier debugging. The widget directory is re-classified into three other directories according to the screens. They are-:
    1. Add_task Directory -: All the widgets which go into the add_task screen is kept here. If you are contributing something to the add_task screen most of yur work will be in this directory.
    2. Home Directory - All the widgets which are in the home screen comes here. Home screen is where most of the action takles place. Thus it has been subdivided into stats and taskslist.
      • Stats Directory - All the stats related widgets such as the stats chart and the stats card are here.
      • Taskslist Directory - All the widgets of taskslist including the individual cards are kept in here. Also, the taskslist parent itself.
    3. Settings Directory - Settings Directory contains all the widgets which are used in the settings screen.
  • The main.dart file is kept cluttered free. This should be only changed when absolutely necessary like when providing a new provider.

Info

We haven't yet tested the app in iOS platform and it mayn't work completely in iOS emulators and/or iOS devices. If you want to contribute the iOS side of the app. You are more than welcome to do so.

Check the Contributions guideline before contributing to make sure you are contributing the rightway.

Be sure to follow the Code Of Conduct at all times.

Being part of a community means there are certain simple rules and etiquettes that needs to be followed. Following these simple rules makes everyone feel like they are a part of community and are not being mistreated.

Have a good day.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].