TodoAPP is a application implemented in Xamarin.Forms, and it has served as a demo for the second Meetup of Barcelona Mobile .NET Developers Group.
The demo implements:
- Windows Azure integration.
- Offline work.
- Item list with Pull to refresh and context actions.
- Dependency inyection.
- Automapping ...
Before launching TodoApp, it is necessary to modify the API Keys of the Azure Mobile Services backend. These keys are referenced in the constructor of BaseAzureService class, located in the XForms.Framework project.
public BaseAzureService()
{
ApiClient = new MobileServiceClient(
"AZURE MOBILE SERVICE URL",
"AZURE MOBILE SERVICE API ACCESS KEY"
);
}