Einsen

๐ŸŽฏ Einsen is a prioritization app that uses Eisenhower matrix technique as workflow to prioritize a list of tasks & built to Demonstrate use of Jetpack Compose with Modern Android Architecture Components & MVVM Architecture.
Alternatives To Einsen
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Expenso855
3 months ago23apache-2.0Kotlin
๐Ÿ“Š A Minimal Expense Tracker App built to demonstrate the use of modern android architecture component with MVVM Architecture
Einsen633
a year ago4apache-2.0Kotlin
๐ŸŽฏ Einsen is a prioritization app that uses Eisenhower matrix technique as workflow to prioritize a list of tasks & built to Demonstrate use of Jetpack Compose with Modern Android Architecture Components & MVVM Architecture.
Notzz App548
3 months ago14mitKotlin
๐Ÿ“ A Simple Note-Taking App built to demonstrate the use of Modern Android development tools - (Kotlin, Coroutines, State Flow, Hilt-Dependency Injection, Jetpack DataStore, Architecture Components, MVVM, Room, Material Design Components).
Kuroba Experimental446
4 months ago102gpl-3.0Kotlin
Free and open source image board browser
Modular App Core127
3 years ago1Kotlin
Core implementations for a modular Android App
Zen109
3 months ago4mitKotlin
Material You music player for android
Mynotes89
2 months ago2apache-2.0Kotlin
๐Ÿ“ A demo todo/notes app which demonstrates the use of MVVM architecture with Test-cases, Navigation Component Library, Room Database, LiveData, Coroutines, Datastore etc.
Covid 19 Tracker71
3 years agomitKotlin
Android app to track COVID-19 cases in India and globally.
Updoot62
2 months agogpl-3.0Kotlin
A reddit client built for android
Audionote59
a day ago3apache-2.0Kotlin
An open source simple audio note taking app built to demonstrate android development best practices.
Alternatives To Einsen
Select To Compare


Alternative Project Comparisons
Readme

GitHub Cards Preview

Build (Android) GitHub license ktlint

GitHub stars GitHub stars GitHub stars GitHub follow Twitter Follow

๐ŸŽฏ Einsen

Einsen is a prioritization app that uses Eisenhower matrix technique as workflow to prioritize a list of tasks & built to Demonstrate use of Jetpack Compose with Modern Android Architecture Components & MVVM Architecture.

Try latest Einsen app apk from below ๐Ÿ‘‡

Einsen


๐ŸŽจ UI Design

Click to View Einsen app Design from below ๐Ÿ‘‡

Einsen Figma Design Einsen FigJam Design


๐ŸŒž Day Mode

Dashboard All Tasks Task Details
Add Task Emoji Empty State

๐ŸŒš We Support Dark Mode Too

Dashboard All Tasks Task Details
Add Task Emoji Empty State

๐Ÿ›  Built With

  • Kotlin - First class and official programming language for Android development.
  • Jetpack Compose - Jetpack Compose is Androidโ€™s modern toolkit for building native UI.
  • Coroutines - A coroutine is a concurrency design pattern that you can use on Android to simplify code that executes asynchronously.
  • Flow - A flow is an asynchronous version of a Sequence, a type of collection whose values are lazily produced.
  • Jetpack DataStore - Jetpack DataStore is a data storage solution that allows you to store key-value pairs or typed objects with protocol buffers. DataStore uses Kotlin coroutines and Flow to store data asynchronously, consistently, and transactionally.
  • Android Architecture Components - Collection of libraries that help you design robust, testable, and maintainable apps.
    • Stateflow - StateFlow is a state-holder observable flow that emits the current and new state updates to its collectors.
    • Flow - A flow is an asynchronous version of a Sequence, a type of collection whose values are lazily produced.
    • ViewModel - Stores UI-related data that isn"t destroyed on UI changes.
    • Jetpack Compose Navigation - The Navigation component provides support for Jetpack Compose applications.
    • DataStore - Jetpack DataStore is a data storage solution that allows you to store key-value pairs or typed objects with protocol buffers. DataStore uses Kotlin coroutines and Flow to store data asynchronously, consistently, and transactionally.
  • Material Components for Android
    • Modular and customizable Material Design UI components for Android.
  • Accompanist
    • A collection of extension libraries for Jetpack Compose.
  • Figma - Figma is a vector graphics editor and prototyping tool which is primarily web-based.

๐Ÿ“ฆ Package Structure

dev.spikeysanju.einsen
โ”œโ”€โ”€ app                   # Application class
โ”œโ”€โ”€ components            # All resuable components for this app
โ”œโ”€โ”€ data                  # For data handling
โ”‚   โ”œโ”€โ”€ local               # Local Persistence Database. Room (SQLite) database
โ”‚   โ”‚   โ”œโ”€โ”€ Dao               # Data Access Object for Room
โ”‚   โ”‚   โ””โ”€โ”€ Database          # Database Instance
โ”‚   โ””โ”€โ”€ datastore
โ”‚       โ””โ”€โ”€ ThemePref         # Datastore Theme Preference 
โ”œโ”€โ”€ di                        # Hilt DI Modules
โ”œโ”€โ”€ model                     # Model class for [Task] & [Emoji]
โ”œโ”€โ”€ navigation                # For navigation handling
โ”‚   โ”œโ”€โ”€ Routes                # All unique navigation routes of this app
โ”‚   โ””โ”€โ”€ NavGraph              # Single source for Navigation Routes of this app
โ”œโ”€โ”€ repository                # Used to handle all data operations
โ”œโ”€โ”€ ui.theme                  # Theme setup for this app
โ”œโ”€โ”€ utils                     # Extension functions
โ”œโ”€โ”€ view                      # All composables screens root folder
โ”‚   โ”œโ”€โ”€ add                   # Add Task Screen
โ”‚   โ”œโ”€โ”€ edit_task             # Edit Task Screen
โ”‚   โ”œโ”€โ”€ dashboard             # Dashboard Screen
โ”‚   โ”œโ”€โ”€ all_task              # All Task Screen
โ”‚   โ”œโ”€โ”€ task_details          # Task Details Screen
โ”‚   โ”œโ”€โ”€ emoji                 # Choose Emoji Screen
โ”‚   โ”œโ”€โ”€ webview               # WebView Screen
โ”‚   โ”œโ”€โ”€ animation             # Animation Placeholders for State handling(Loading, Error, Empty etc.)
โ”‚   โ”œโ”€โ”€ about                 # About Screen
โ”‚   โ””โ”€โ”€ viewmodel             # ViewModel 
โ””โ”€โ”€ MainActivity.kt           # MainActivity 


๐Ÿ—ผ Architecture

This app uses ***MVVM (Model View View-Model)*** architecture.

๐Ÿงฐ Build-tool

You need to have Android Studio Beta 3 (BumbleBee) or above to build this project.

Beta-studio

๐Ÿ’ฌ Frequently Asked Questions

When was project Einsen started?

๐ŸŽฏ I started working on this idea 6 months before founding Einsen app (April 2021). The idea was exploring mental models + productivity tips to achieve your goals. I tried to test the idea with Productivity & Time Management Trackers . So I built initial MVP..

Where can I find the research process for Einsen app?

๐Ÿ“ The biggest lesson I learned while designing this was that, I need to be focused & working relentlessly on the same project, to get the right flow of thought & complete it. Each iteration led to more insights on improving the design, solving problems for users. You can find the link for ๐Ÿ“ Design Process here & ๐ŸŽจ Figma Designs here

What is the future goals of this project Einsen?

๐Ÿฆ„ For each week I will be implementing some new cool features for this application. Here are some of the amazing features you will come to expect from this platform ๐Ÿ‘‡

  • Due Date for each task
  • Recurring task
  • Pomodoro timer for each task
  • Task Template as per user preference
  • Calendar based task management
  • Project management
  • Statistics for completed task
  • Introducing new mental model templates like Eisenhower

๐Ÿค Contribute

If you want to contribute to this app, you're always welcome! See Contributing Guidelines.


๐Ÿ“ฉ Contact

I know that first and foremost you are looking for a tool to solve your problems, but if you enjoy it that much, why not tell us? We would love to hear from you ๐Ÿ˜‰

DM me at ๐Ÿ‘‡


โค๏ธ Show your Support

I love it when people use my tool and weโ€™d love to make it even better. If you like this tool and want to support me in developing more free tools for you, Iโ€™d really appreciate a donation. Feel free to buy me a cup of coffee ๐Ÿ˜„. Thanks!

Buy Me A Coffee Patron Link PayPal Link

๐Ÿค— Credits


๐Ÿ”– License

    Apache 2.0 License


    Copyright 2021 Spikey sanju

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

Popular Kotlin Coroutines Projects
Popular Room Persistence Library Projects
Popular Control Flow Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Kotlin
Kotlin Coroutines
Room Persistence Library
Declarative Ui