This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
1.5.0 Preview 7
Pre-release
Pre-release
rookiejava
released this
05 Jun 05:34
·
18 commits
to master
since this release
Nuget
Important Notice 📢
- Update the version of referenced Xamarin.Forms version to 4.6.0.800
- Deprecate the legacy APIs (#297)
- The following classes are deprecate from 1.5.0, and no longer be supported in the future. Therefore, please update your application according to the migration guide below.
Deprecated APIs Migration Guide ⚡ ⚡ ⚡
-
Check
→ Xamarin.Forms.CheckBox or Xamarin.Forms.SwitchDisplayStyle
→ Switch.Style + SwitchStyle (TizenSpecific)Color
→ Switch.OnColor (Core), Switch.ThumbColor (Core), Switch.BackgroundColor (Core)
-
CirclePage
→ Xamarin.Forms.ContentPageActionButton
→ Button (Core) + Button.Style (TizenSpecific) or ContentButton (CircularUI)- e.g)
<Button AbsoluteLayout.LayoutBounds="75, 268, 210, 92" tizen:VisualElement.Style="bottom" />
- e.g)
RotaryFocusObject
→ BezelInteractionPage (CircularUI) or Application.ActiveBezelInteractionElement (TizenSpecific)CircleSurfaceItems
→ CircleSurfaceView.CircleSurfaceItems (CircularUI)CircleToolbarItems
→ Page.ToolbarItems (Core)
-
IndexPage
→ Xamarin.Forms.CarouselView + Xamarin.Forms.IndicatorView or Xamarin.Forms.CarouselPage- You can also simply use Xamarin.Forms.Shell with Xamarin.Forms.ShellSection instead.
-
Radio
→ Xamarin.Forms.RadioButtonValue
→ RadioButton.Text (Core)IsSelected
→ RadioButton.IsChecked (Core)GroupName
→ RadioButton.GroupName (Core)Color
→ RadioButton.BackgroundColor (Core)Selected
→ RadioButton.CheckChanged (Core)
-
CircleSurfaceEffectBehavior
→ BezelInteractionPageRotaryFocusObject
→ BezelInteractionPage.RotaryFocusObject (CircularUI)
-
CirclePageNotFoundException
→No needed.
New Controls 🎉
- BezelInteractionPage (#298) (#299)
BezelInteractionPage
is basically aXamarin.Forms.ContentPage
but with an additional property,RotaryFocusObject
, that helps developers interact with the bezel rotation. Normally, a focused control in an application gets the bezel interaction. However,BezelInteractionPage
gives the full control of which control gets the bezel interaction in the current page to developers.- See also here for more detail
- CheckCell, Check2TextCell, RadioCell, Radio2TextCell, Switch2TextCell and SingleTextCell (#317) (#318) (#319) (#321)
Enhancements
- Update Bezel Intercation behavior on closing dialog (#304)
- Update CircleListViewRenderer (#303)
- Update ActiveBezelInteractionElement on Activate (#302)
- Update CircleScrollViewRenderer (#300) (#301)
- Update renderers for Stepper and DateTimeSelector (#296)
- Refactoring CirclePageRenderer (#291)