srdrakcay / ChatAppWithWS

Simple Chat App with WebSocket

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChatAppWithWS

This is a simple Chat App with using WebSocket

Project Screen

CHAT SCREEN
Uygulama Ekran Görüntüsü

Project Tech stack & Open-source libraries

  • This app made %100 with Kotlin

  • Made with Android Architecture Components for the Collection of libraries that help you design robust, testable, and maintainable apps.

  • ViewModel:The ViewModel class is a business logic or screen level state holder. It exposes state to the UI and encapsulates related business logic. Its principal advantage is that it caches state and persists it through configuration changes. This means that your UI doesn’t have to fetch data again when navigating between activities, or following configuration changes, such as when rotating the screen.

  • Kotlin Flow:In coroutines, a flow is a type that can emit multiple values sequentially, as opposed to suspend functions that return only a single value. For example, you can use a flow to receive live updates from a database.

  • Kotlin Coroutine:On Android, coroutines help to manage long-running tasks that might otherwise block the main thread and cause your app to become unresponsive. Over 50% of professional developers who use coroutines have reported seeing increased productivity. This topic describes how you can use Kotlin coroutines to address these problems, enabling you to write cleaner and more concise app code.

  • Dependency Injection with Hilt:Hilt is a dependency injection library for Android that reduces the boilerplate of doing manual dependency injection in your project. Doing manual dependency injection requires you to construct every class and its dependencies by hand, and to use containers to reuse and manage dependencies.

  • Navigation Componenet:Navigation refers to the interactions that allow users to navigate across, into, and back out from the different pieces of content within your app. Android Jetpack's Navigation component helps you implement navigation, from simple button clicks to more complex patterns, such as app bars and the navigation drawer.

  • Pie Socket : A WebSocket tool

About

Simple Chat App with WebSocket


Languages

Language:Kotlin 100.0%