All Projects → p-hlp → Intimeandroid

p-hlp / Intimeandroid

Licence: gpl-3.0
Android interval timer app using compose + compose navigation, dagger hilt, room, kotlin coroutines + flow and mvvm design pattern.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Intimeandroid

Wanandroid
🏄 基于Architecture Components dependencies (Lifecycles,LiveData,ViewModel,Room)构建的WanAndroid开源项目。 你值得拥有的MVVM快速开发框架:https://github.com/jenly1314/MVVMFrame
Stars: ✭ 410 (+1071.43%)
Mutual labels:  livedata
Jetpack Musicplayer
即使不用云音乐听曲儿,也请务必收藏好该库!🔥 一行代码即可接入,音乐播放控制组件 - Even if you don't listen to the music by Spotify, be sure to collect this library, please! 🔥 This music player component can be accessed by only one line of code. Supporting by LiveData & AndroidX.
Stars: ✭ 577 (+1548.57%)
Mutual labels:  livedata
Android Architecture Components Kotlin
Clean code App with Kotlin and Android Architecture Components
Stars: ✭ 23 (-34.29%)
Mutual labels:  livedata
Mvvmarms
Android MVVM Architecture Components based on MVPArms and Android Architecture Components.
Stars: ✭ 425 (+1114.29%)
Mutual labels:  livedata
Lives
Lives - Android LiveData Extensions for Kotlin and Java
Stars: ✭ 509 (+1354.29%)
Mutual labels:  livedata
T Mvvm
This repository contains a detailed sample app that implements MVVM architecture using LiveData,ViewModel,Retrofit,Rxjava
Stars: ✭ 630 (+1700%)
Mutual labels:  livedata
Kotlin Mvvm Covid19
This repository contains simple COVID19 data monitoring with android stack MVVM, Live Data, Koin, RxJava, RxBinding, Offline first with simple caching, etc
Stars: ✭ 372 (+962.86%)
Mutual labels:  livedata
Androidarchitecture
Recommended architecture by Android
Stars: ✭ 883 (+2422.86%)
Mutual labels:  livedata
Changedetection
Automatically track websites changes on Android in background.
Stars: ✭ 563 (+1508.57%)
Mutual labels:  livedata
Base Mvvm
App built to showcase basic Android View components like ViewPager, RecyclerView(homogeneous and heterogeneous items), NavigationDrawer, Animated Vector Drawables, Collapsing Toolbar Layout etc. housed in a MVVM architecture
Stars: ✭ 18 (-48.57%)
Mutual labels:  livedata
Livedata Ktx
Kotlin extension for LiveData, chaining like RxJava
Stars: ✭ 466 (+1231.43%)
Mutual labels:  livedata
Mvvm Sample App
MVVM, ViewModel and LiveData Sample App
Stars: ✭ 498 (+1322.86%)
Mutual labels:  livedata
Offlinesampleapp
Sample Offline-First MVVM app that uses Android Priority Job Queue, Room, Retrofit2, LiveData, LifecycleObserver, RxJava2, Dagger Android
Stars: ✭ 653 (+1765.71%)
Mutual labels:  livedata
Musicplayer
Implemented using Clean Arch, MVVM, LiveData, Room, Koin, Coil, Service, Notification and ExoPlayer
Stars: ✭ 413 (+1080%)
Mutual labels:  livedata
Youtubedownloader
Android App for searching for videos on Youtube by keywords using YouTube Data API and download videos from YouTube in different formats.
Stars: ✭ 25 (-28.57%)
Mutual labels:  livedata
Mvvmsmart
基于谷歌最新AAC架构,MVVM设计模式的一套快速开发库,整合ViewModel+Lifecycles+Navigation+DataBinding+LiveData+Okhttp+Retrofit+RxJava+Glide等主流模块,满足日常开发需求。使用该框架可以快速开发高质量、易维护的Android应用。 项目组会持续维护,请放心使用.欢迎Start并Fork交流.
Stars: ✭ 382 (+991.43%)
Mutual labels:  livedata
Reactive Mvvm Android
My way to MVVM using KotlinX Coroutines and Android data-binding
Stars: ✭ 626 (+1688.57%)
Mutual labels:  livedata
Livedatamvvm
Example Of LiveData in MVVM
Stars: ✭ 33 (-5.71%)
Mutual labels:  livedata
Movie Zone
movies application using MVVM Architecture
Stars: ✭ 25 (-28.57%)
Mutual labels:  livedata
Jetpack Mvvm Best Practice
是 难得一见 的 Jetpack MVVM 最佳实践!在 以简驭繁 的代码中,对 视图控制器 乃至 标准化开发模式 形成正确、深入的理解!
Stars: ✭ 6,950 (+19757.14%)
Mutual labels:  livedata

What's InTime? ⏳

InTime is an interval timer application using android jetpack components and a long running service.

The purpose of this project is to learn and implement new android technologies and libraries.

Used Libraries


Architecture

This application uses the MVVM (Model View ViewModel) architecture and unidirectional data flow.











Navigation

Furthermore it is a single-activity application with compose-navigation handling the navigation graph.

    NavHost(navController, startDestination = Screen.WorkoutListScreen.route) {
        // NavGraph
        composable(Screen.WorkoutListScreen.route) {
            WorkoutListScreen(
                ...
            )
        }
        composable(Screen.WorkoutAddScreen.route) {
            WorkoutAddScreen(
                ...
            )
        }
        composable(Screen.WorkoutDetailScreen.route) {
            WorkoutDetailScreen(
                ...
            )
        }
    }

🚧 In development 🚧

The API of compose/compose-navigation is likely to change, since they are still in alpha. Because of that this project is also subject to change.

License

This project is published under the GPLv3 license.

Copyright (C) 2020 github.com/p-hlp

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
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].