inju2403 / DayWorry

android worry counseling app (kotlin)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Link

Play Store
하루고민 영상

하루 고민 (Android Sharing Concerns App)

Version

1.0.5

Project Description

'하루 고민'은?

오늘하루 고민하고, 내일은 잊자!
하고는 마음 한편 쌓아두었던 고민을 24시간 동안 풀어놓고 더 나은 내일을 보낼 수 있도록 도와주는 고민상담 커뮤니티 입니다.

Background

하나의 고민을 계속해서 안고 있지 말고 커뮤니티에 공유하고 이를 딱 하루만 다 같이 고민한 후에 날려버림으로써 개인의 고민을 해소하고 나아가 사회적으로 긍정적인 효과를 기대할 수 있음

Role

안드로이드 모바일 어플리케이션 UI/UX, 아키텍쳐 설계 및 구축, 데이터 시각화 및 전처리, User contacts

Used Libraries

  • ViewModel (Store and manage UI-related data)
  • LiveData (Observable data)
  • Retrofit (HTTP client)
  • Gson (A Java library that can be used to convert Java Objects into their JSON representation)
  • Kotlin Coroutine (Light-weight threads)
  • Glide (Glide is a fast and efficient open source media management and image loading framework for Android that wraps media decoding, memory and disk caching, and resource pooling into a simple and easy to use interface.)
  • Android Sliding Up Panel (This library provides a simple way to add a draggable sliding up panel (popularized by Google Music and Google Maps) to your Android application.)
  • ViewPager2 (Swipe views allow you to navigate between sibling screens, such as tabs, with a horizontal finger gesture, or swipe)
  • dotsindicator (This library makes it possible to represent View Pager Dots Indicator with 3 different awesome styles. It supports ViewPager and ViewPager2)
  • BottomSheet (BottomSheet is an Android component which presents a dismissible view from the bottom of the screen. BottomSheet can be a useful replacement for dialogs and menus but can hold any view so the use cases are endless.)
  • Lottie (Lottie is a mobile library for Android and iOS that parses Adobe After Effects animations exported as json with Bodymovin and renders them natively on mobile)

Architecture

This Sharing Concerns App uses MVVM architecture. There is also a Repository layer, which is for interacting with API calls or DB transactions.

// View
viewModel!!.worryList.observe (this, Observer {
    // TODO
})

// ViewModel
private val worryListState = MutableLiveData<List<Worry>>()
val worryList: LiveData<List<Worry>> get() = worryListState

worryListState.value = repo.getWorrys() // get data from API and/or DB

Author

Licence

Copyright 2020 LEE SEUNGJU.

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.

About

android worry counseling app (kotlin)

License:Apache License 2.0


Languages

Language:Kotlin 100.0%