* Updated Frame renderer on UWP to handle CornerRadius properly
* Test page for issue 2838
* Fixed typo and removed UITEST directive
* Label was cut off, fixed
* fixes#3000 remove math on scroll view container for RTL
- setup RTL scrollviews to all start scrolled all the way to the right
* * formatting and renaming fixes
* - don't move scroll if not set to RTL
* Fixes#1632
* Allow underline and strikethrought text decorations on labels and spans
* revert some files
* pr feedback adjustments
* remove docs
* rename interface
* reorder enum
* clean up whitespace
* adjust tizen renderer
* add gallery demo for setting both underline and strike
* allow multiple values of enum to be set in xaml/css
* use normal null check
* use nameof
* include paragraph style
* tab alignment
* rebase from upstream
* pass control to update method on UWP
* correct text decorations type converter
* reset run text instead of label text on UWP when spans are used
* add tests for text decoration converter
* Stop crashing when I accidentally click on the Perf gallery
* [Core] Add TitleView to NavigationPage
- also add unit tests
- fixes#1716
* [Android] Add ClearRenderer static method to Platform
* [Android] Use Platform.ClearRenderer
it's a straight extract from this class
* [Android] Implement TitleView and TitleIcon on AppCompat backend
using lessons (and some duplicated code) from ListView header/footer views.
* [iOS] Implement TitleView
* [UWP] Implement TitleIcon and TitleView
* [Core] Add NavigationPage.BarHeight
* [Android] Use BarHeight
* NavigationBarGallery updates
* [Core] Add iOS HideNavigationBarSeparator Platform Specific
* [iOS] Implement HideNavigationBarSeparator Platform Specific
* sample search page
* Convert BarHeight to Android platform specific
* Reset BarHeight when leaving the gallery
* Add a sample TitleView xaml page
* VisualElement >> View
* Fix comment
* Improved SearchTitle sample page
* [Core] Set TitleView Parent on Changing instead of Changed
Changing is too late for the iOS layout
* [iOS] Fix layouts in iOS10
* [iOS] Stop content clipping
* Expanded test page
* [iOS] Fix HideNavigationBarSeparator for iOS<11
* [iOS] Layout TitleView with margins
* More tweaks to test page
* [UWP] Fix OnDetailPropertyChanged if/else
* [UWP] Comment empty setters
* Convert commented code to more useful comment.
* Adjust performance test async call
* fixes#3008 and #3009
* fixed code to only call reload data once
* if itemsource is set to null then just null out CVS otherwise it'll cause a COM Exception
* added ListView Categories to some tests to more easily run targeted tests against UWP
* fixed a couple UWP tests that weren't passing
* * fixes#3018
* fixes#3019
* fixes#2996
* The wrong object was being added to the internal collection
* * add test case for listview initailized as null
* [iOS] Default IsAccessibilityElement to true
* Update a11y gallery for new expectations
* [UWP] Don't override OnCreateAutomationPeer on LabelRenderer
This was added in #1067 to enable automated UI tests, but it has drastic effects on the Narrator and will need to be revisited.
fixes#1946
* [iOS,Android] Support for controlling caret position in Entry
Refs #1667 Adding support for getting and setting
caret position on a text Entry on iOS and Android.
* [UWP] Support for controlling caret position in Entry
Refs #1667 Adding support for getting and setting
caret position on a text Entry on UWP.
* [iOS] Support for setting cursor color
Refs #1667 Updating iOS `UITextField.TintColor` when setting cursor
color on `Entry`.
Adding `IsSet` checks for cursor properties before making changes
to underlying control.
* Adding null checks and UITest
* Making CursorColor iOS specific and adding UITests
Refs #1667
* Fix for BeginningOfDocument being null if not first responder
Moving call to `BecomeFirstResponder` to an earlier stage, before
we call `BeginningOfDocument` since it may be null if called
before text view has focus.