Currency converter
app helps you to convert one currency to another currency
📸 Screens01 | 📸 Screens02 | 📸 Screens03 |
---|---|---|
├── src
| ├── composable
| | └── ConvertScreen
| |
| ├── data
| | ├── models
| | | ├── ExchangeResponse
| | | ├── Info
| | | └── Query
| | └── ConvertApi
| |
| ├── di
| | └── AppModule
| |
| ├── main
| | ├── MainRepository
| | ├── MainRepositoryImpl
| | └── MainViewModel
| |
└── ├── utils
| ├── ConvertEvent
| └── Resource
|
├── MainActivity
└── MyApp
- Kotlin
- Clean and Simple UI with Jetpack Compose
- Coroutines
- MVVM(Model + View + ViewModel)
- ApiLayer
- Dagger Hilt for DI
- Retrofit
- Jetpack Compose - Jetpack Compose is Android’s modern toolkit for building native UI. It simplifies and accelerates UI development on Android. Quickly bring your app to life with less code, powerful tools, and intuitive Kotlin APIs.
- Kotlin - First class and official programming language for Android development.
- Coroutines - For asynchronous and more.
- Dependency Injection -
- Hilt-Dagger - Standard library to incorporate Dagger dependency injection into an Android application.
- MVVM stands for Model, View, ViewModel -
Model
: This holds the data of the application. It cannot directly talk to the View. Generally, it’s recommended to expose the data to the ViewModel through Observables.View
: It represents the UI of the application devoid of any Application Logic. It observes the ViewModel.ViewModel
: It acts as a link between the Model and the View. It’s responsible for transforming the data from the Model. It provides data streams to the View. It also uses hooks or callbacks to update the View. It’ll ask for the data from the Model.
You can connect with me here LinkedIn