A cross platform desktop app that converts temperature from Celsius to Fahrenheit.
- Light/dark automatic mode
- Live conversion updates
- Cross platform
| Windows 10 | Linux (Dark Mode) |
|---|---|
Download and run the latest executable from the Releases page.
No installation is required.
Enter a desired temperature into the Celsius text field. It will automatically be converted and displayed below in the Fahrenheit text field.
Celsius: 32
Fahrenheit 89.6 <-- automatically converted!
- Language: C# .NET 10.0
- Framework: Avalonia UI 12.0.5
- Template: Avalonia .NET MVVM App
Clone the project
git clone https://github.com/playsrc/TempConverter.gitGo to the project directory
cd TempConverterBuild the project
dotnet buildStart the app
dotnet run --project TempConverterAppAvalonia UI is not as intimidating as I thought it was. For the most part its quite similar to the Web Dev workflow I'm used to do.
I learned how to set up an Avalonia project, create a layout with the controls, manage events and export the project to different platforms.

