summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-03-07Remove InternalsVisibleTo from Core to XF.Platforms.* (#782)kingces95344-579/+10670
* Remove InternalsVisibleTo from Core to XF.Platforms.* * Changes per Jason's code review * Move LockableObservableListWrapper to internals namespace * Changes per Stephane's code review * update docs * Touch code to get CI to run tests * Rebase; Update documentation
2017-03-07Fixed issue where errant "." were appearing on droid controls due to hints. ↵BradChase20112-2/+2
(#801)
2017-03-07UWP MapRenderer fixes. (#724)indydawgy1-23/+17
* Issues: 1. The MapRenderer calls TrySetViewBoundsAsync before the map is ready for it. This causes the map to hardly ever initialize to the correct position. 2. The visible region calculation gets the zoom wrong. 3. Map can cause a crash if you rotate/zoom a lot when setting the visible region. Fixes: 1. Call MoveToRegion using MapControl's RunIdleAsync to have it move after the map starts rendering 2. lat/long delta should be: var latitudeDelta = Math.Abs(nw.Position.Latitude - se.Position.Latitude); var longitudeDelta = Math.Abs(nw.Position.Longitude - se.Position.Longitude); rather than calculated from the center 3. Move the visible region set into the try/catch block. * Made spaces into tabs to conform to previous standard.
2017-03-07[UWP] Set SearchBar's AutoMaximizeSuggestionArea to false (#646)Paul DiPietro1-0/+1
2017-03-07[UWP] Adjust AutoSuggestBox's TextBoxStyle style name to prevent possible ↵Paul DiPietro1-2/+2
crash (#774)
2017-03-06[UWP] Add width check for Detail on MDP to prevent potential crash (#775)Paul DiPietro3-1/+68
2017-03-06[UWP] Improve toolbar consistency on MasterDetailPage (#744)Jimmy Garrido7-36/+121
* Improve toolbar consistency on MasterDetailPage * Properly indent xaml page
2017-03-06[C] ITextElement and TextElement (#789)Stephane Delcroix13-38/+98
2017-03-06Using IUIActionSheetDelegate (#800)E.Z. Hart1-1/+1
2017-03-03[Nuget] Remvoe fix dependency on MonoDroid70 (#798)Rui Marinho1-0/+4
2017-03-03[WinRT/UWP] Do not allow IsPresented use in Split mode on desktop (#707)Paul DiPietro4-1/+119
2017-03-03[Android] Don't crash if Control is accessed in Effect OnDetached when Page ↵Samantha Houts6-32/+134
is Disposed. (#773) * Add repro for 51505 * [Android] Don't dispose of EffectControlProvider * Oops
2017-03-03[WinRT/UWP] Make TextBox better respect background color changes via ↵Paul DiPietro5-3/+101
behaviors (#749)
2017-03-03Fix for nullreferenceexception when a TabbedPage is rendered without a set ↵Joris Vergeer1-1/+5
CurrentPage (#669)
2017-03-03[Android] Fix NavigationPage.BarTextColorProperty on API 21+ with ↵Jimmy Garrido1-3/+15
FormsApplicationActivity (#631)
2017-03-03Throw exception when ViewCell View is null (#752)Jimmy Garrido2-0/+7
2017-03-03[C] move the Font proxying into FontElementStephane Delcroix8-157/+133
2017-03-03Fix for Android Visibility/Opacity crash (#785)E.Z. Hart3-2/+68
* Repro * Fix for UI test * Cache the Alpha value and queue up restoration after the visibility is changed * Fix issue with negative height/width in UpdateLayout * Clean up usings
2017-03-03[Core] Share BP across IFontElement implementors (#783)Stephane Delcroix9-113/+193
* [Core] Share BP accross IFontElement implementors * make sure the converter is used
2017-03-02remove files committed by accidentStephane Delcroix4-54/+0
2017-03-02[Xaml] Fallback to App.Current for DynResources (Previewer) (#793)Stephane Delcroix7-5/+83
* [Xaml] Fallback to App.Current for DynResources (Previewer) * [C] avoid NRE and ensure setting the style
2017-03-01[Docs] Fix formatting (#795)Rui Marinho1-32/+32
2017-03-01[C] support more color format in ColorTypeConverter (#784)Stephane Delcroix3-172/+271
* [C] support more color format in ColorTypeConverter * [C] Parse numbers in InvariantCulture * more tests
2017-03-01Remaining API docs for XF.Core (#794)Mike Norman22-147/+146
2017-03-01[XamlC] update to cecil 0.10.0-b4 to better symbol detection (#791)Stephane Delcroix7-64/+10
2017-02-28[Controls] Remove dependency on Components (#790)Rui Marinho2-10/+5
2017-02-28[docs] fix Pages docsStephane Delcroix1-0/+3
2017-02-28[docs] build Pages doc in make docsStephane Delcroix1-2/+11
2017-02-27[Xaml] no longer require a ServiceProvider for Trigger and PropertyCo… (#771)Stephane Delcroix6-61/+30
* [Xaml] no longer require a ServiceProvider for Trigger and PropertyCondition * fix
2017-02-24[Xaml] decorate markup and value providers to speed up inflating (#770)Stephane Delcroix13-1/+28
* [Xaml] decorate markup and value providers to speed up inflating * update docs * fix docs
2017-02-23[Controls] Fix build of test caseRui Marinho1-0/+2
2017-02-23Add Preserve attributePaul DiPietro1-0/+1
2017-02-23[C] Update SelectedItem prior to event invokePaul DiPietro3-13/+16
2017-02-23[UWP] connect the actual ObservableCollection to the ComboBox.ItemsSourceStephane Delcroix5-8/+82
2017-02-22[Docs] Update internals (#780)Rui Marinho1-0/+3
2017-02-22[IVT] Add IVT for testing FlexLayoutRui Marinho1-1/+1
2017-02-22remove redundant declarationAdrian Knight1-6/+0
2017-02-22add support for view cellsAdrian Knight3-27/+49
2017-02-22center stacklayoutAdrian Knight1-0/+1
2017-02-22added sample codeAdrian Knight2-0/+103
2017-02-22added sample filesAdrian Knight4-0/+73
2017-02-22image supports vectorsAdrian Knight1-12/+24
2017-02-21update IEditorController callsitesChris King6-14/+19
2017-02-21Update docsChris King3-2/+57
2017-02-21IEditorControllerChris King3-1/+10
2017-02-21[iOS] Label should not return infinite widthSamantha Houts1-2/+3
2017-02-21Add repro for 52533Samantha Houts2-1/+66
2017-02-20[Docs] UpdateRui Marinho1-0/+5
2017-02-20[MacOS] Fix buildRui Marinho1-4/+3
2017-02-17Add missing virtual keywordsE.Z. Hart2-2/+2