* fixes#5274
bindings should allow null for nullable valuetypes!
* [C] Binding null on nullable
@kicsiede's fix for #5242, plus unit test, targetted to 3.6.0
- closes#5242
* Implement FlowDirection propagation to items in CollectionView; fixes#4583
* Run logical child detachment via CellDisplayingEnded
* Fix Visual propagation on iOS
* Fix Visual propagation on Android
* Fix rebase error
* fixes pull #4453
bindings should allow null for nullable valuetypes!
* [C] Binding null on nullable
@kicsiede's fix for #5242, plus unit test, targetted to 3.6.0
- closes#5242
In the process of building a demo app (https://github.com/matthewrdev/xamarin-forms-4), I discovered that I could not apply multiple parameters; doing so would cause a compile-time error.
The usage of this property in ShellContent, specifically in ApplyQueryAttributes, indicates that the intended behaviour is to allow users to specify multiple URL arguments that will be applied onto the page. Changing AllowMultiple to true fixes this.
For reference, when AllowMultiple is not explicitly set, it's default value is false. See: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/attributes/attributeusage.
* [Android Material] Linear Progress Indicator (#5079)
Merging into the material "slider" / "progress" bar branch so that we can share some code as they are the same control
* [Material] [Slider, ProgressBar] Updated the progress bard and added the slider
* Renamed the gallery
fixes#5008fixes#5079fixes#5018
* [X] add callback for previewer on failing ctor (#5101)
Add a callback when object instantiation or creation fails, so the
previewer can replace it by an educated guess
* Allow the previewer to use design flag on RDs (#5096)
* [Xaml] Better handling of exception on properties (#5099)
Allow the previewer to recover and continue on throwing property setters
or BindableProperties.
* [Previewer] Fallback for factorymethod not found (#5139)
- fixes#5138
* [previewer] more info to the callback (#5155)
* Fix github issue #3319
Fix #3319 [MAC] ScrollTo method is not working in Xamarin.Forms for mac platform
* Update Issue3318.cs
Fix Issue3318 UITest.
* Fix github issue #3319
Fix #3319 [MAC] ScrollTo method is not working in Xamarin.Forms for mac platform
* Update Issue3318.cs
Fix Issue3318 UITest.
In the process of building a demo app (https://github.com/matthewrdev/xamarin-forms-4), I discovered that I could not apply multiple parameters; doing so would cause a compile-time error.
The usage of this property in ShellContent, specifically in ApplyQueryAttributes, indicates that the intended behaviour is to allow users to specify multiple URL arguments that will be applied onto the page. Changing AllowMultiple to true fixes this.
For reference, when AllowMultiple is not explicitly set, it's default value is false. See: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/attributes/attributeusage.
* Reanimate IPlatform and mark it obsolete
* Reinstate IPlatform everywhere in case someone is using it or subscribing to
PlatformSet
* Revert breaking parameter name change
* Obsolete IsEnabledPropertyName
* Reinstate and obsolete Realized property and constructor
* Escape string format so solution will build
* Fix previewer reflection test
* Fix interface on Tizen/TizenPlatformServices
* Update Xamarin.Forms.Core/Element.cs
Co-Authored-By: hartez <hartez@users.noreply.github.com>
* [Android, WPF] Fixes rounding down the size of visual elements
[Android] Fixes settting background color for BoxView
* refactoring PrepareLayout action
* address comments
* cake
* cake
* android fix
* fix clean
* version fix
* android deploy updates
* move to cake tools
* add clean bin obj back in
* git versioning
* fix vs mac target
* vs mac fixes
* remove default config on sh
* add UAP pdbs
* Updated all the OpenTK references to use NuGet
- Using the same NuGet version of OpenTK across the board
- Added a gallery factory to allow for platform-specific pages
- Added the OpenGL galleries to Android, iOS, GTK# and WPF
* Fix the build for iOS and macOS
* Fix the modified defines for the control gallery
* Split file by class
* Handle multiple moving items on iOS
* Make replacer indexes more intuitive
* Handle multi-item replacement on iOS
* More robust Remove implementation
* Make Replace test indexes include the end index; don't determine startIndex when removing
unless necessary.
* Prevent snap helpers from snapping until the user interacts with scrolling; fixes#4935
* Lower sensitivity for snapping to kick in on Android
* Remove underscore in method name
* Add ItemSizingStrategy to CollectionView in Core;
Create test harness for changing ItemSizingStrategy;
Handle ItemSizingStrategy and ItemSizingStrategy changes on iOS;
* Update test bed to better illustrate changes
* No need for DetermineCellSize to be internal
* Conserve precious bits by removing `private` modifier
partially implements #3172