Skip to content

CryptoApp is a mobile application that allows users to view real-time cryptocurrency prices and details. The app utilizes modern Android development technologies and follows best practices in UI design and architecture to provide an optimal user experience.

Notifications You must be signed in to change notification settings

betullesen/crypto_app_JetpackCompose

Repository files navigation

CryptoApp 📊📈📉


CryptoApp is a mobile application that allows users to view real-time cryptocurrency prices and details. The app utilizes modern Android development technologies and follows best practices in UI design and architecture to provide an optimal user experience.

Features

  • Animated Splash Screen: When the app starts, a stylish animation is shown on the splash screen.
  • Listing of Cryptocurrencies with Prices: Users can view a list of cryptocurrencies with their current prices.
  • Search Functionality to Filter Cryptocurrencies by Name: Users can search for a specific cryptocurrency by its name.
  • Detailed View of Selected Cryptocurrency: Users can click on a cryptocurrency to see detailed information about it.

Technologies Used:

  • Jetpack Compose:

    • Jetpack Compose is a declarative UI toolkit for building user interfaces in Android. Instead of using XML, UI components are built using Kotlin code. Jetpack Compose is used throughout the app for all screen layouts, state management, and UI elements.
  • Hilt (Dependency Injection):

    • Hilt is a library that simplifies dependency injection in Android. It ensures that necessary classes (such as repositories and view models) are correctly injected into activities, fragments, and composables, allowing for easier management of dependencies.
  • Navigation Component:

    • Navigation Compose is used to manage navigation within the app.
  • ViewModel:

    • ViewModel ensures that UI-related data is managed in a lifecycle-conscious way. This prevents data loss during configuration changes and ensures that UI components are only concerned with UI logic.
  • Kotlin Coroutines:

    • Kotlin Coroutines are used for managing asynchronous tasks. For example, when fetching data from a repository, coroutines ensure that the UI doesn't freeze while the data is being fetched. ViewModelScope is used to launch coroutines that are tied to the lifecycle of the ViewModel.
  • Retrofit:

    • Retrofit is used for making API calls to retrieve cryptocurrency data. The responses from the API are handled by Retrofit instances managed through Hilt.
  • Compose State Management:

    • mutableStateOf and remember are used for state management in the app. These functions ensure that when the state changes, the UI is automatically updated.
  • Material3:

    • Material3 components are used for UI design to ensure the app follows Google's Material Design guidelines, providing a consistent and visually appealing user interface.

Preview

Image

About

CryptoApp is a mobile application that allows users to view real-time cryptocurrency prices and details. The app utilizes modern Android development technologies and follows best practices in UI design and architecture to provide an optimal user experience.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages