Hi there!
I devoted this week to creating a small utility - Kanban board. I will skip steps for creating a local database and will focus on Xamarin controls.
So let's create the app step by step:
Create a blank Xamarin.Forms project
Create models in the shared project
Card.cs
Column.cs
ColumnInfo.cs
It's time to create a ViewModel. Create a new file
MainPageViewModel.cs
:
Finally the UI part.
Add base style and set the view model for the MainPage.
The result looks like this:
The full source code is available on GitHub.