Skip to content

Commit

Permalink
Merge pull request #80 from Zotyamester/master
Browse files Browse the repository at this point in the history
Fix lab7
  • Loading branch information
tibitoth authored Oct 21, 2024
2 parents d2d2b30 + 71c938a commit 887c91c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/laborok/07-android-network/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ Az adataink áramlása hasonló lesz a már korábban látottakhoz, (*repository

#### Modell osztályok

Az [OpenWeatherMAp API](https://openweathermap.org/current) a kéréseinkre válaszként egy JSON objektumban fogja visszaadni az aktuális időjárást.
Az [OpenWeatherMap API](https://openweathermap.org/current) a kéréseinkre válaszként egy JSON objektumban fogja visszaadni az aktuális időjárást.

!!!info "API hívás (az {appID} lecserélendő a sajátra)"
https://api.openweathermap.org/data/2.5/weather?q=Budapest&units=metric&appid={appId}
Expand Down Expand Up @@ -1162,10 +1162,10 @@ class WeatherViewModel(
val Factory: ViewModelProvider.Factory = viewModelFactory {
initializer {
val savedStateHandle = createSavedStateHandle()
val weatherReposotory = WeatherInfoApplication.weatherRepository
val weatherRepository = WeatherInfoApplication.weatherRepository
WeatherViewModel(
savedStateHandle = savedStateHandle,
weatherRepository = weatherReposotory
weatherRepository = weatherRepository
)
}
}
Expand Down Expand Up @@ -1592,7 +1592,7 @@ Valósítsuk meg a városok törlését az elemek balra elhúzásának hatásár

???success "A megvalósítás lépései"
- törlés függvény a *repository interface*-be
- törlés függvény a *rapository*-ba
- törlés függvény a *repository*-ba
- törlés függvény a *viewmodel*-be
- törlés eseménykezelő a *CityListScreen*-be

Expand Down

0 comments on commit 887c91c

Please sign in to comment.