• Stars
    star
    5,634
  • Rank 6,883 (Top 0.2 %)
  • Language
    C#
  • License
    Other
  • Created about 8 years ago
  • Updated 3 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Xamarin.Forms Official Home

Xamarin.Forms banner

Xamarin.Forms

Xamarin.Forms provides a way to quickly build native apps for iOS, Android, Windows and macOS, completely in C#.

Read more about the platform at https://www.xamarin.com/forms.

Support

Xamarin.Forms now has a successor which is .NET MAUI as part of .NET 6+ and follows the same support lifecycle as the MAUI Support Lifecycle.

Support for Xamarin.Forms will end on May 1, 2024 as per the Xamarin Support Policy:

Xamarin support will end on May 1, 2024 for all classic Xamarin SDKs.

Build Status

Azure DevOps

Packages

Platform/Feature Package name Stable Prerelease Nightly Feed Azure (main branch)
Core Xamarin.Forms NuGet NuGet
AppLinks Xamarin.Forms.AppLinks NuGet NuGet
Maps Xamarin.Forms.Maps NuGet NuGet
Maps.GTK Xamarin.Forms.Maps.GTK NuGet NuGet
Maps.WPF Xamarin.Forms.Maps.WPF NuGet NuGet
Pages Xamarin.Forms.Pages NuGet NuGet
Pages.Azure Xamarin.Forms.Pages.Azure NuGet NuGet
Platform.GTK Xamarin.Forms.Platform.GTK NuGet NuGet
Platform.WPF Xamarin.Forms.Platform.WPF NuGet NuGet
Visual.Material Xamarin.Forms.Visual.Material NuGet NuGet

If you want to use the latest dev build then you should read this blog post:

  • Add the nightly feed to your NuGet sources or add a NuGet.Config to your app (placing it in the same directory where your solution file is) with the following content:

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <packageSources>
        <clear />
        <add key="xamarin-ci" value="https://aka.ms/xf-nightly/index.json" />
        <add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
      </packageSources>
    </configuration>

    NOTE: This NuGet.Config should be with your application unless you want nightly packages to potentially start being restored for other apps on the machine.

  • Change your application's dependencies to have a * to get the latest version.

Getting Started

For both methods underneath you will have to add this NuGet feed for the build to succeed. See this documentation page to find out how.

Windows

Install Visual Studio 2019+

VS 2019+ is required for developing Xamarin.Forms. If you do not already have it installed, you can download it here. VS 2019+ Community is completely free. If you are installing VS 2019+ for the first time, select the "Custom" installation type and select the following from the features list to install:

  • .NET desktop development
    • Individual Components > .NET > .NET Framework 4.6.1 SDK, .NET Framework 4.6.1 targeting pack, .NET Framework 4.7.2 SDK, .NET Framework 4.7.2 targeting pack.
  • Universal Windows Platform Development
  • Mobile Development with .NET
    • Individual Components > Development Activities > Xamarin Remoted Simulator
    • If you're not using Hyper-V Individual Components > Emulators > Hyper-V Intel Hardware Accelerated Execution Manager (HAXM)
  • Most current SDK version of .NET Core

The Android 10.0 API 29 SDK and Android 9.0 API 28 SDK are required for developing Xamarin.Forms. They can be installed by using the Xamarin Android SDK Manager.

We also recommend installing Xamarin Android Device Manager. This will use the HAXM tools installed above and allow you to configure Android Virtual Devices (AVDs) that emulate Android devices. If you already have VS 2019+ installed, you can verify that these features are installed by modifying the VS 2019+ installation via the Visual Studio Installer.

Provisioning script

If you are getting errors about missing SDKs, you can run our provisioning script. Note that it can take some time to run the whole script. To better understand how the script works, feel free to check out our build.cake file.

  • On CMD

    build.cmd -Target provision
    
  • On Powershell

    ./build.ps1 -Target provision
    

    NOTE: If you encounter an error saying build.ps1 is not digitally signed, open Powershell as an administrator and resolve by running Set-ExecutionPolicy RemoteSigned first.

  • On CMD/Powershell/sh (New! More info here)

    dotnet tool install Cake.Tool -g
    dotnet cake --target=provision
    

Mac

Install Visual Studio for Mac 2019

If you do not already have it installed, instructions to download and setup can be found here.

Because of current Multi-Targeting limitations with Visual Studio for Mac you will need to manually build/restore some projects before you are able to work on the Xamarin Forms solution.

Here are a few different options we've put together to help make this process easier

  • Branches 3.5+ come with a Cake script target that you can use to build and open VSMac

    ./build.sh --target vsmac

    OR as mentioned above in the Windows section about provisioning, you can also use the new Cake.Tool

    dotnet tool install Cake.Tool -g
    dotnet cake --target=provision
    
  • When working on an earlier branch that does not have the cake scripts, you can use the following build.sh script

  • If you don't want to run any scripts:

    • Open Xamarin.Forms.sln
    • Wait for VSMAC to finish restoring all projects
    • from the command line run:
      • msbuild Xamarin.Forms.Build.Tasks/Xamarin.Forms.Build.Tasks.csproj
    • Now you should be able to run and deploy everything. The only reason you would need to do this process again is if you clean the solution folder or delete the bin/obj folders that are part of the Xamarin.Forms.Build.Tasks.csproj
Solution Configuration

Upon opening the Xamarin.Forms solution, you will find that there are a number of errors and warnings under the Error List pane; you can resolve this by changing the filter of Build + IntelliSense to Build Only. At this point, you should be able to successfully build the solution.

By default, the Xamarin.Forms.Controls project does not have a configuration for various API keys to access certain features on each platform (e.g. maps). When building the solution for the first time, a controlgallery.config file will be generated inside that project, which looks like this:

UWPMapsAuthKey:

If you aren't working with maps, you can ignore this. If you want to work with maps, you will have to obtain your own API keys for each of these services, inserted directly after the identifier (e.g. UWPMapsAuthKey:abcdefghijklmnopqrstuvwxyz). You can find out how to obtain each of these as follows:

Due to the way that Android works, the maps API key cannot be injected at runtime. As a result, you will have to add this key to the MapsKey.cs file under Xamarin.Forms.ControlGallery.Android/Properties:

[assembly: Android.App.MetaData("com.google.android.maps.v2.API_KEY", Value = "INSERT_KEY_HERE")]

You can find out how to obtain a Google Maps API key here.

Build from the Command line

Make sure you have nuget.exe 4.0 or above and the latest .NET Core SDK. On macOS you should specify the platform in the msbuild command (/p:Platform=iPhoneSimulator)

msbuild /restore Xamarin.Forms.sln

UI Tests

Run Android UI Tests

Depending on your environment setup, you might need to configure a few things before being able to debug / run UI tests, especially on Windows.

  • If you receive an error about ANDROID_HOME, please make sure to set your environment variable to the Android SDK directory (e.g. C:\Program Files (x86)\Android\android-sdk).
  • If you receive an error about JAVA_HOME, please install the latest Java JDK and set your environment variable to the JDK directory (e.g. C:\Program Files\Java\jdk-13).
  • If you receive an error about a missing ApkFile, please generate an APK file for Xamarin.Forms.ControlGallery.Android. The easiest way to do this is to right click the project and select "Deploy". Note that if you rebuild the solution, you might lose the APK and will need to generate it again.

After these steps are taken care of, you should be good to go. You can see all UI tests in Test Explorer, search them for your own convenience, and quickly run individual tests.

Run UWP UI Tests

To run the UWP UI Tests:

  1. Install and run the Windows Application Driver.
  2. Launch the Xamarin.Forms.ControlGallery.WindowsUniversal project to install the ControlGallery application onto your system.

You should now be able to run any of the UWP UI Tests.

Coding Style

We follow the style used by the .NET Foundation, with a few exceptions:

  • We do not use the private keyword as it is the default accessibility level in C#.
  • We use hard tabs over spaces. You can change this setting in Visual Studio for Windows via Tools > Options and navigating to Text Editor > C# and selecting the "Keep tabs" radio option. In Visual Studio for Mac it's set via preferences in Source Code > Code Formatting > C# source code and disabling the checkbox for Convert tabs to spaces.
  • Lines should be limited to a max of 120 characters (or as close as possible within reason). This may be set in Visual Studio for Mac via preferences in Source Code > Code Formatting > C# source code and changing the Desired file width to 120.

Contributing

Reporting Bugs

We use GitHub Issues to track issues. If at all possible, please submit a reproduction of your bug along with your bug report.

Stats

More Repositories

1

xamarin-forms-samples

Sample apps built using the Xamarin.Forms framework
C#
4,302
star
2

xamarin-macios

Bridges the worlds of .NET with the native APIs of macOS, iOS, tvOS, and watchOS.
C#
2,359
star
3

monodroid-samples

A collection of Xamarin.Android sample projects.
C#
2,197
star
4

XamarinComponents

Plugins for Xamarin
C#
1,989
star
5

xamarin-android

.NET for Android provides open-source bindings of the Android SDK for use with .NET managed languages such as C#
C#
1,866
star
6

XamarinCommunityToolkit

The Xamarin Community Toolkit is a collection of Animations, Behaviors, Converters, and Effects for mobile development with Xamarin.Forms. It simplifies and demonstrates common developer tasks building iOS, Android, and UWP apps with Xamarin.Forms.
C#
1,590
star
7

ios-samples

Xamarin.iOS sample apps
C#
1,590
star
8

Essentials

Essential cross platform APIs for your mobile apps.
C#
1,527
star
9

mobile-samples

C#
1,460
star
10

XobotOS

XobotOS - Android ported to C#
Java
1,246
star
11

xamarin-forms-book-samples

Code samples for "Creating Mobile Apps with Xamarin.Forms"
C#
730
star
12

docs-archive

Xamarin docs archive
Java
564
star
13

Xamarin.Auth

Xamarin.Auth
C#
544
star
14

urho

Code to integrate with the Urho3D engine
C#
458
star
15

app-crm

C#
386
star
16

urho-samples

Samples for the Urho bindings
C#
385
star
17

Sport

C#
357
star
18

Monkey.BluetoothLE

BluetoothLE abstraction for use with Xamarin projects, including Xamarin.Forms.
C#
349
star
19

mac-samples

Sample programs showing how to use Xamarin.Mac on OSX.
C#
323
star
20

WebSharp

Support for running C# on the web browser.
C#
302
star
21

GooglePlayServicesComponents

C#
300
star
22

mqtt

Minimalist and intuitive MQTT broker and client written entirely in C#
C#
297
star
23

dev-days-labs

C#
295
star
24

KimonoDesigner

Paint application using Xamarin.Mac and SkiaSharp
C#
257
star
25

SignaturePad

C#
247
star
26

GoogleApisForiOSComponents

C#
222
star
27

prebuilt-apps

Complete, prebuilt apps for you to customize and deploy.
C#
217
star
28

xamarin-forms-book-preview-2

Sample code for the 2nd Preview Edition of "Creating Mobile Apps with Xamarin.Forms"
C#
208
star
29

flex

Flex is a flexible box layout system written in C, designed to be easy to consume from other languages
C
188
star
30

Workbooks

C#
187
star
31

java.interop

Java.Interop provides open-source bindings of Java's Java Native Interface (JNI) for use with .NET managed languages such as C#
C#
181
star
32

AndroidX

AndroidX (Jetpack) bindings for Xamarin.Android
C#
162
star
33

binding-tools-for-swift

C#
150
star
34

AndroidSupportComponents

Xamarin bindings for Android Support libraries - For AndroidX see https://github.com/xamarin/AndroidX
C#
147
star
35

XamarinStripe

Stripe.com .NET bindings
C#
134
star
36

Xamarin.Social

Xamarin.Social
C#
125
star
37

AngryNinjas

Angry Ninjas Cocos2D/XNA Sample
C#
120
star
38

customer-success-samples

Xamarin Customer Success
104
star
39

KinderChat

Secure Texting for Children
C#
98
star
40

VervetaCRM

Publicly available CRM demonstration app.
C#
97
star
41

ExposureNotification.Sample

A sample cross-platform mobile app and server for exposure notifications.
C#
95
star
42

mini-hacks

Complete four mini-hacks during Evolve and get a prize.
C#
89
star
43

PortableRazor

A lightweight implementation of ASP.NET MVC APIs for mobile devices.
C#
88
star
44

FacebookComponents

C#
87
star
45

Seminars

Sample code used in the Xamarin Seminars
C#
68
star
46

amazon

Library for accessing Amazon web services from mobile apps
C#
62
star
47

xamarin-forms-book-preview

Sample code for the Preview Edition of "Creating Mobile Apps with Xamarin.Forms"
C#
61
star
48

mac-ios-samples

Samples targeting both iOS and OSX that share code.
C#
57
star
49

XamarinAzureChallenge

Create an iOS/Android app using Xamarin.Forms and connect it to a serverless Azure Function
C#
56
star
50

Touch.Unit

NUnitLite based runner for unit testing .NET code under iOS
C#
50
star
51

google-apis

Google API bindings for Xamarin.
C#
47
star
52

xamarin-evolve-2014

Slides, Demos and Training samples for Evolve 2014 from Xamarin University
C#
45
star
53

mobcat

43
star
54

Rivets

A C# implementation of App Links, functionally, a port of Bolts
C#
43
star
55

app-xamarintv

Xamarin.Forms app demonstrating the dual-screen device capability for neo and duo devices
C#
42
star
56

Xamarin.Forms.CarouselView

C#
41
star
57

Xamarin.Forms.GraphQL

C#
41
star
58

android-activity-controller

C#
36
star
59

evolve-quest

Evolve Quest is an iBeacon based scavenger hunt that attendees enjoyed at Evolve 2014
C#
35
star
60

xamarin-iot-samples

Samples for Xamarin IoT
C#
35
star
61

monotouch-element-pack

A place to host various MonoTouch.Dialog.Elements that users can use.
C#
35
star
62

Xamarin.Forms-api-docs

Xamarin.Forms API documentation in ECMA XML format
PowerShell
34
star
63

PortableRazorStarterKit

A starter kit for PortableRazor.
JavaScript
34
star
64

Xamarin.Legacy.Sdk

Starting from a .NET 6 project, adds the ability to target legacy Xamarin target frameworks such as monoandroid11.0 or xamarin.ios10. *Not fully supported*
33
star
65

SalesforceSDK

Salesforce SDK component
C#
31
star
66

LibZipSharp

A managed wrapper (and then some) around libzip (https://libzip.org/)
C#
28
star
67

xamarin-android-tools

C#
28
star
68

benchmarker

A simple benchmarking and comparison tool
C#
26
star
69

apple-api-docs

Xamarin.iOS & Xamarin.Mac API documentation in ECMA XML format
F#
26
star
70

sketches

Xamarin Sample Sketches
26
star
71

Xamarin.MacDev

Support libraries for xamarin-macios
C#
25
star
72

mirepoix

A small collection of utility APIs including command line argument splitting and quoting, file system globbing, cross platform process execution, and console output redirection handling.
C#
25
star
73

Xamarin.PropertyEditing

C#
24
star
74

xamarinu-connect2016

C#
23
star
75

app-customers

A simple demo app with three screens: a list screen, a read-only detail screen, and an editable detail screen.
C#
23
star
76

xunit

xUnit
C#
22
star
77

MyCompany

C#
22
star
78

jar2xml

Java Archive API extraction tool
Java
19
star
79

android-api-docs

Android API documentation
PowerShell
19
star
80

demo-xamarincrm

C#
19
star
81

XamarinAndroidXMigration

Build tasks and tools to support Xamarin.Android AndroidX migration
C#
18
star
82

Urho3D

Clone of the Urho3D repository
C++
18
star
83

xamarin-evolution

Maintains proposals for changes to the Xamarin SDKs (Android, iOS, Forms, Components, Urho, Skia)
18
star
84

dropbox-sync-component

C#
18
star
85

vs-mono-debugger-sample

Sample showing how to use the Visual Studio Mono Debugger for your own Mono-based project types
C#
17
star
86

DocWriter

Desktop Editor for the ECMA XML Documentation
C#
16
star
87

evolve-presentation-template

Evolve 2016 Presentation Templates
HTML
15
star
88

SaveTheDate

C#
14
star
89

xamarin-windows

Provides reusable MSBuild tasks and sample Visual Studio tooling for building and debugging Mono AOT compiled binaries
C#
14
star
90

fsharpbinding

F# binding for MonoDevelop (updated to support Xamarin Studio)
F#
14
star
91

Windows.Injector

Allows injecting .NET code into a remote process in Windows
C++
12
star
92

web-tests

C#
12
star
93

md-xamarin-fsharp-addins

F# magic
F#
11
star
94

fsharp-iOS-designer

iOS designer integration for F#
F#
11
star
95

moq

The most popular and friendly mocking library for .NET and Xamarin
C#
9
star
96

component-template

A sample template that you can use as a guide to create your own components.
Ruby
7
star
97

sales-uitest-extensions

Extension methods for UITest
C#
7
star
98

evolve-2014-presentation-template

Evolve 2014 Presentation Template
7
star
99

emscripten-test

C
6
star
100

Gendarme.Rules.Xamarin

Gendarme static analysis rules for Xamarin.
C#
6
star