-
-
Notifications
You must be signed in to change notification settings - Fork 107
Version History
Released Tuesday, April 14, 2020
Thank you to the community for helping to make Xamarin.Forms.PancakeView even better! This release, we received amazing contributions from these individuals. Give them a big round of applause! 👏
Author | Description | PR |
---|---|---|
yurkinh | PancakeView implementation for WPF | GH-73 |
jhonatanfernando | Adding Shadow effect on UWP | GH-82 |
Released Friday, December 27, 2019
- Reverted GH-62
Released Monday, November 11, 2019
Released Monday, November 6, 2019
Thank you to the community for helping to make Xamarin.Forms.PancakeView even better! This release, we received amazing contributions from these individuals. Give them a big round of applause! 👏
Author | Description | PR |
---|---|---|
Shanmukha Ranganath | Fixes Android Border leaking | GH-61 |
cryophobia | Fix addition of duplicate items in iOS | GH-62 |
Released Monday, October 18, 2019
- GH-57 FIX: PancakeView CornerRadius & HasShadow or Elevation
Released Monday, September 22, 2019
- GH-51 Fixes CGPath AddLine spamming console on iOS
- GH-49 UWPancakeView
- GH-45 FIX: The BindableProperty "BackgroundGradientStops" is readonly
- GH-42 FIX: PancakeView with HasShadow & CornerRadius shows up incorrect
- The XAML for
BackgroundGradientStops
andBorderGradientStops
has changed and now takes aGradientStopCollection
which is a list ofGradientStop
object.
<yummy:PancakeView.BorderGradientStops>
<yummy:GradientStopCollection>
<yummy:GradientStop Color="#f3855b" Offset="0" />
<yummy:GradientStop Color="#fbcf93" Offset="0.2" />
<yummy:GradientStop Color="#fbe960" Offset="0.4" />
<yummy:GradientStop Color="#a0e67a" Offset="0.6" />
<yummy:GradientStop Color="#33c6ee" Offset="0.8" />
<yummy:GradientStop Color="#c652ba" Offset="1" />
</yummy:PancakeView.GradientStopCollection>
</yummy:PancakeView.BorderGradientStops>
Released Monday, September 16, 2019
- GH-37 NuGet licence infomation
- GH-40 [Android] Handle object disposed exception
- GH-43 Improved the gradient list XAML
- The XAML for
BackgroundGradientStops
andBorderGradientStops
has changed and now takes a simple list of GradientStop object.
<yummy:PancakeView.BorderGradientStops>
<yummy:GradientStop Color="#f3855b" Offset="0" />
<yummy:GradientStop Color="#fbcf93" Offset="0.2" />
<yummy:GradientStop Color="#fbe960" Offset="0.4" />
<yummy:GradientStop Color="#a0e67a" Offset="0.6" />
<yummy:GradientStop Color="#33c6ee" Offset="0.8" />
<yummy:GradientStop Color="#c652ba" Offset="1" />
</yummy:PancakeView.BorderGradientStops>
Thank you to the community for helping to make Xamarin.Forms.PancakeView even better! This release, we received amazing contributions from these individuals. Give them a big round of applause! 👏
Author | Description | PR |
---|---|---|
IeuanWalker | NuGet licence infomation | GH-37 |
adrianknight89 | [Android] Handle object disposed exception | GH-40 |
Released Friday, August 23, 2019
Thank you to the community for helping to make Xamarin.Forms.PancakeView even better! This release, we received amazing contributions from these individuals. Give them a big round of applause! 👏
Author | Description | PR |
---|---|---|
Shanmukha Ranganath | Support for polygonal shapes | GH-32 |