• Overview
  • Documentation
  • GitHub
  • Blog
  • Premium support
  • Contact

Xamarin Forms Quickstart

NB! Ammy doesn’t support .NET Standard dependencies at the moment (github issue)

Install Ammy Visual Studio Extension

Go to Visual Studio Gallery and install Visual Studio Extension

Create Xamarin.Forms project

Create Xamarin.Forms Portable blank app

Install Ammy package

Run install Ammy.XamarinForms in Package Manager Console targeting your portable project.

Create MainPage.ammy

Click Add -> New Item… and select Ammy Page for Xamarin.Forms

Add Label to your page:

ContentPage "AmmyXamarinFormsSample.MainPage" {
  Label { "Hello, World!" }
}

Set MainPage as content in App.cs

Go to App.cs and replace dummy content with MainPage:

public App()
{
    // The root page of your application
    MainPage = new MainPage();
}

Run you application

Set AmmyXamarinFormsSample.Droid or any other platform as a StartUp project and hit F5

You should see something like this:

Video

Please note, that Xamarin.Forms support is still in beta.

Don’t forget to submit issues, we try to fix them as fast as possible.

  • Overview
  • WPF Quickstart
  • Xamarin Forms Quickstart
  • UWP Quickstart
  • How to’s
  • Syntax
    • Nodes
    • Properties
    • Property values
      • Strings
      • Integers
      • Boolean, x:Null
      • Enum values
      • x:Type
      • Event handlers
      • Node values
      • Array values
      • Parameters
      • Resources
      • Binding
    • Using
    • Variables
    • Mixins
      • Combine keyword
    • Aliases
© 2017 Ammy by ION OÜ