Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.2 KB

README.md

File metadata and controls

32 lines (22 loc) · 1.2 KB

Weather Desktop

A weather display application that receives weather via a public API. The application provides data on temperature, weather, pressure, humidity, UV index, wind speed.

Tech:

  • Compose Desktop
  • Kotlin
  • JavaFX

Video loading...

to run, add the object - Properties to src/jvmMain/kotlin/data

package data

object Properties {
    val API_KEY = "YOUR Weatherbit API KEY"
}

But before that, get the API key - https://www.weatherbit.io/api/weather-current

You may also encounter build issues due to the use of JavaFX, which will be better implemented in the future.

IntelliJ Java Kotlin