Introducing the app
In this chapter, we will build the UnoBookRail ResourcePlanner app, which will be used internally, inside UnoBookRail. UnoBookRail employees will be able to use this app to manage any resources within UnoBookRail, such as trains and stations. In this chapter, we will develop the issue-managing part of the app. While a real version of this app would have a lot more features, in this chapter, we will only develop the following features:
- Creating a new issue
- Displaying a list of issues
- Exporting issues in PDF format
Since this application is a typical line of business app, the app will be targeting UWP, macOS, and WASM. Let's continue by creating the app.
Creating the app
Let's start by creating the solution for the app:
- In Visual Studio, create a new project using the Multi-Platform App (Uno Platform) template.
- Name the project ResourcePlanner. You can use a different name if you want, but in this chapter, we will...