Xamarin.Forms 1.3.0.6292

There is a newer version of this package available.
See the version list below for details.
dotnet add package Xamarin.Forms --version 1.3.0.6292
NuGet\Install-Package Xamarin.Forms -Version 1.3.0.6292
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Xamarin.Forms" Version="1.3.0.6292" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Xamarin.Forms --version 1.3.0.6292
#r "nuget: Xamarin.Forms, 1.3.0.6292"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Xamarin.Forms as a Cake Addin
#addin nuget:?package=Xamarin.Forms&version=1.3.0.6292

// Install Xamarin.Forms as a Cake Tool
#tool nuget:?package=Xamarin.Forms&version=1.3.0.6292

Build native UIs for iOS, Android, and Windows Phone from a single, shared C# codebase

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid10 is compatible. 
MonoTouch monotouch10 is compatible. 
Windows Phone wp8 is compatible.  wp81 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories (333)

Showing the top 5 popular GitHub repositories that depend on Xamarin.Forms:

Repository Stars
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
dotnet/BenchmarkDotNet
Powerful .NET library for benchmarking
reactiveui/ReactiveUI
An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application.
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
PrismLibrary/Prism
Prism is a framework for building loosely coupled, maintainable, and testable XAML applications in WPF, Xamarin Forms, and Uno / Win UI Applications..
Version Downloads Last updated
1.4.3.6358-pre2 2,155 4/24/2015
1.4.3.6356-pre1 346 4/21/2015
1.4.2.6359 22,413 4/30/2015
1.4.2.6355 7,014 4/21/2015
1.4.2.6353-pre2 881 3/31/2015
1.4.2.6350-pre1 195 3/30/2015
1.4.1.6349 18,568 3/30/2015
1.4.1.6347-pre2 1,838 3/19/2015
1.4.1.6342-pre1 597 3/10/2015
1.4.0.6341 13,779 3/9/2015
1.4.0.6340-pre2 450 3/6/2015
1.4.0.6336-pre1 488 3/3/2015
1.3.5.6337 2,873 3/5/2015
1.3.5.6335 3,406 3/2/2015
1.3.5.6333-pre1 794 2/17/2015
1.3.4.6332 8,945 2/17/2015
1.3.4.6331-pre4 433 2/13/2015
1.3.4.6329-pre3 236 2/12/2015
1.3.4.6328-pre2 242 2/11/2015
1.3.4.6325-pre1 260 2/9/2015
1.3.3.6323 10,704 2/9/2015
1.3.3.6322-pre3 218 2/6/2015
1.3.3.6321-pre2 371 2/4/2015
1.3.3.6318-pre1 341 2/2/2015
1.3.2.6316 4,360 2/3/2015
1.3.2.6313-pre3 327 1/30/2015
1.3.2.6309-pre2 369 1/28/2015
1.3.2.6299-pre1 940 1/20/2015
1.3.1.6296 16,376 1/4/2015
1.3.1.6294-pre1 2,157 12/24/2014
1.3.0.6292 6,214 12/24/2014
1.3.0.6286-pre4 777 12/19/2014
1.3.0.6284-pre3 614 12/12/2014
1.3.0.6280-pre2 550 12/9/2014
1.3.0.6275-pre1 5,870 11/12/2014
1.2.3.6257 22,720 10/2/2014
1.2.3.6256-pre4 1,168 9/26/2014
1.2.3.6255-pre3 890 9/20/2014
1.2.3.6249-pre2 834 9/9/2014
1.2.3.6246-pre1 2,079 8/15/2014
1.2.2.6243 15,766 7/30/2014
1.2.2.6241-pre3 1,462 7/28/2014
1.2.2.6240-pre2 1,570 7/22/2014
1.2.2.6238-pre1 1,598 7/17/2014
1.2.1.6229 4,989 7/14/2014
1.1.1.6206 10,264 6/19/2014
1.1.0.6201 4,364 6/12/2014
1.0.6197 699 6/4/2014
1.0.6188 4,629 5/28/2014

## Important notes:
- Generators for XAML pages should to be updated to use the new tool MSBuild:UpdateDesignTimeXaml instead of MSBuild:Compile
- Grid default is now *

## New API and Enhancements

- Add MasterDetailPage.ShouldShowToolbarButton method to enable control over the appearance of the toolbar button.
- Device.GetNamedSize (NamedSize size, Type targetType); Same as Device.GetnamedSize (NamedSize size, Element element) but doesn't require an instance.
- MasterDetailPage.MasterBehavior : Used to control how the MasterDetailPage renderers the split view between the Master and Detail. Allowed values are:

```csharp
public enum MasterBehavior
{
Default,
SplitOnLandscape,
Split,
Popover,
SplitOnPortrait
}
```

- VisualElement.Navigation now contains overloads for all Pushing and Popping methods that accept a boolean parameter to enable/disable animations.
- INavigation contains methods needed for more complex navigation scenarios:

```csharp
public interface INavigation
{
IReadOnlyList<Page> NavigationStack { get; }
IReadOnlyList<Page> ModalStack { get; }

void RemovePage (Page page);
void InsertPageBefore (Page page, Page before);

Task PushAsync (Page page);
Task<Page> PopAsync ();
Task PopToRootAsync ();
Task PushModalAsync (Page page);
Task<Page> PopModalAsync ();

Task PushAsync (Page page, bool animated);
Task<Page> PopAsync (bool animated);
Task PopToRootAsync (bool animated);
Task PushModalAsync (Page page, bool animated);
Task<Page> PopModalAsync (bool animated);
}
```

- New Application class to replace previous methods of turning a Page into a platform specific object.
- New member on Page: `protected virtual bool OnBackButtonPressed ()`: Override in order to handle *physical* back button press events. Events bubble down from root page and back up. Unhandled back button events will cause the app to exit. NavigationPage and the Platform still handle the back button as expected, however it is now possible to intercept and modify these behaviors. Not overriding this method retains the existing back button behavior.
- DependencyService now has Register methods for users needing more advanced ways to register dependencies.
- WidthRequest, HeightRequest, MinimumWidthRequest, and MinimumHeightRequest are now BindableProperties
- IViewController, IVisualElementController, and IElementController now available and explicitly implemented on VisualElement. These interfaces will eventually replace all internal API's currently used to communicate between platform renderers and the frontend API.
- IElementController.SetValueFromRenderer allows for updating of BindableProperties from renderers without accidentally clearing bindings.
- XAML now supports text as the content node in Label: `<Label>Hello World</Label>`
- Pin now has a Clicked property for detecting when the user taps or clicks on a Map pin after the information window is visible.
- Layout constructor is now marked protected and not internal
- Styles support Behaviors and Triggers
- DataTrigger and MultiTrigger added
- VisualElement.IsFocused is now a BindableProperty
- Use * as default grid size
- StaticResource searches in Application.Current.Resources too
- Add NavigationPage.HasBackButton
- Fix Fuchsia spelling, Obsolete the old spelling
- TypeConverter on FontSize
- SearchBar.CancelButtonColor (currently only supported on iOS)
- ListView context actions


## Bug Fixes

### Core
- Bindings are culture unaware
- SetValue now properly overrides settings from a Style when the Style is applied later.
- Grid now has more nuanced reflow logic for things like labels. This fixes some cases where grid would end up either too small or too large for its content.
- Fix crash in XAML with DataTemplates and event subscription.
- ListView/TableView respect WidthRequest/HeightRequest again (regression in 1.3.0-pre2)
- No longer crash when trying to download/access the same UriImageSource on hundreds of images (System.IOException).
- Fix issue where Grid sometimes measured out taller than it should, especially in ListView/StackLayout. Grid now prefers to expand in the direction of a "defined" constraint, which tends to match expected behavior when measuring. If both constraints are Infinite, previous behavior is retained.
- BindableObject.SetValue will now properly perform loss-less conversions on base types. e.g. Calling slider.SetValue (Slider.ValueProperty, 6.0f) will now work correctly.
- Fix issue where StackLayout in a Horizontal orientation would return an incorrect MinimumHeight in GetSizeRequest.
- Adding a bad Path to a UriImageSource no longer crashes
- Improved XAML error reporting
- Fix crash where calling Navigation.PushAsync from re-initialized View sometimes crashed
- Fix error where cloning a Binding did not clone the Source parameter
- IsPresented is now respected correctly when using MasterDetailPage. May throw exception now if IsPresented is set to a disallowed value with MasterBehavior.
- Several bugs relating to culture invariance in XAML parsing.
- ThicknessConverter no longer depends on device culture
- Label properly resizes after setting Label.FontSize/Font/FontAttributes [Bug](https://bugzilla.xamarin.com/show_bug.cgi?id=24722)
- XAML InitializeComponent calls in some apps this will result in a massive performance improvement when loading pages.
- Serialization now property supports DataMemberAttributes
- ListView and TableView now return consistent sizing across all platforms. This change should not affect most apps, however some apps suffering from inconsistent sizing with ListViews/TableViews should find the situation better.
- Small set of changes to Layout to enable performance optimization with unneeded measure invalidation.
- Don't throw NRE in ResourceDictionaries when reparenting
- Fix map issue with IsShowingUser and location
- fix binding against arrays (https://bugzilla.xamarin.com/show_bug.cgi?id=24263)
- Resolve issue where Labels didn't reflow correctly inside of grids
- RelativeLayout now gives sane error when relative to non-child view
- fix NRE on removing ListView items (https://bugzilla.xamarin.com/show_bug.cgi?id=23778)
- x:Reference now works inside other markup extensions.

### Android
- Pressing back and re-entering the app now cleans up the old Activity and associated renderers. This fixes both memory leak issues and some crashes.
- Label.FontSize = 18 no longer accidentally gives a font size of 14 on any devices.
- Fix another case where ScrollView content could flow outside of bounds (yay).
- Fix crash in WebView when being removed from the visual tree.
- Map no longer re-centers on Layout.
- MasterDetailPage container width now matches android design guidelines on tablets. (No longer insanely wide).
- SwitchCell height is no longer squished
- No longer crashes on Android 5.0
- No longer renders with a black bar at the bottom of Android 5.0 devices
- Other compatibility fixes with Android 5.0
- WebViewRenderer now uses correct path for finding resources
- Fix issue where calling SetPage multiple times would throw an exception
- Fix crash when restarting the Activity introduced in last pre-release
- Fix issue where ListView.SelectedItem = null sometimes did not work as expected.
- Fix issues where Switch did not show on some Samsung devices
- Fix issue where rotation ignored the anchor point
- Fix Button text allignment issue (https://bugzilla.xamarin.com/show_bug.cgi?id=21138, https://bugzilla.xamarin.com/show_bug.cgi?id=21368)


### iOS
- Renderers are now properly re-used in ListView. Performance enhancement.
- iOS 8 now uses UIAlertController for alerts.
- Fix a case where the keyboard could end up overlapping the input area.
- Mixing swipe to go back and press to go back no longer results in a blank page.
- ContextAction More/Cancel buttons now translate properly
- ImageCell no longer flashes old image on cell re-use.
- Slider now updates bindings correctly due to conversion fix.
- Button.Image is now rendered with original image to match other platforms
- Editor now scrolls to the correct location when a keyboard is shown
- Fix NullReferenceException when assigning to SearchBar.BackgroundColor
- Fix issue where PushModalAsync could sometimes result in a unhandled exception from UIKit.
- MasterDetailPage now disposes of child renderers correctly, resolves a memory leak.
- Fix issue where cells could not be unselected using blank rows.
- WebViewRenderer now uses correct path for finding resources
- Resolve issue where calling CreateViewController multiple times would cause an exception
- Use proxy when downloading images if configured on device.
- Partial swipes on a NavigationPage no longer cause the NavigationPage to get out of sync with the UINavigationController
- ActionSheet now correctly shows on iOS 8
- ActionSheet no longer gets incorrectly positions when rotating while visible.
- Fix issue on Translating views of zero size
- Select picker first item (https://bugzilla.xamarin.com/show_bug.cgi?id=22352)
- TabbedPage now updates icons correctly
- Fix several memory leaks
- Modal dialog scrolls to far (https://bugzilla.xamarin.com/show_bug.cgi?id=23904)
- Fix NRE when disposing some renderers.

### WinPhone
- Fix crash when pressing back button with active ActionSheet.
- TableView no longer selects wrong item when in Landscape mode.
- OpenUriAction now uses LaunchUriAsync.
- ViewCell with a Picker no longer occasionally occludes other elements on screen.
- Back button now closes ActionSheets and Alerts before attempting Navigation.
- Picker no longer shows a bunch of blank entries.
- ListView selection now properly shows up.
- ListView allows selection of items multiple times in a row if the user calls SelectedItem = null. This behavior matches other platforms correctly now.
- Label now reports the correct minimum width to match other platforms.
- Fix crash in Picker