https://github.com/mohit0233/weatherapp
Weather App - An app made with Kotlin (following MVVM architectural pattern) which gets weather data from https://api.openweathermap.org/ using Retrofit2
https://github.com/mohit0233/weatherapp
android kotlin retrofit2 viewbinding viewmodel-livedata
Last synced: about 1 month ago
JSON representation
Weather App - An app made with Kotlin (following MVVM architectural pattern) which gets weather data from https://api.openweathermap.org/ using Retrofit2
- Host: GitHub
- URL: https://github.com/mohit0233/weatherapp
- Owner: Mohit0233
- Created: 2020-09-18T19:13:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-21T11:06:43.000Z (over 5 years ago)
- Last Synced: 2025-06-14T03:05:06.554Z (12 months ago)
- Topics: android, kotlin, retrofit2, viewbinding, viewmodel-livedata
- Language: Kotlin
- Homepage:
- Size: 1.17 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WeatherApp
An app made with kotlin using
>- ViewModel
>- LiveData
>- Coroutines
>- Retrofit2
## Output
### Home Fragment

This is the HomeFragment Nav Tab which shows up when the app starts after splash
Screen. It uses location to get weather data from weather api and then show data
in the layout
---
### Dashboard fragment

In Dashboard fragment,there is a map fragment as shown in pic which is used
to get location.When user click at any place in google map then we get a
location.This location can be use to get data from the weather api through
retrofit2.Then the weather data we get is shown by bottom sheet
---