Skip to content

Version History

Steven Thewissen edited this page Jul 14, 2020 · 3 revisions

⚠️⚠️⚠️ Version history after 1.4.1 is being kept in the releases overview ⚠️⚠️⚠️


Xamarin.Forms PancakeView 1.4.1

Released Tuesday, April 14, 2020

What's New in this Release

  • Basic shadow support for UWP | GH-73
  • Basic WPF support | GH-82

Thank you 🎉

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

Xamarin.Forms PancakeView 1.3.7

Released Friday, December 27, 2019

What's New in this Release


Xamarin.Forms PancakeView 1.3.6

Released Monday, November 11, 2019

What's New in this Release

  • GH-65 Reverts GH-61
  • GH-66 FIX: Fixes checking for Android API levels when using Elevation.

Xamarin.Forms PancakeView 1.3.5

Released Monday, November 6, 2019

What's New in this Release

  • GH-61 Fixes Android Border leaking
  • GH-62 Fix addition of duplicate items in iOS

Thank you 🎉

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

Xamarin.Forms PancakeView 1.3.4

Released Monday, October 18, 2019

What's New in this Release

  • GH-57 FIX: PancakeView CornerRadius & HasShadow or Elevation

Xamarin.Forms PancakeView 1.3.3

Released Monday, September 22, 2019

What's New in this Release

  • 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

API Changes

  • The XAML for BackgroundGradientStops and BorderGradientStops has changed and now takes a GradientStopCollection which is a list of GradientStop 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>

Xamarin.Forms PancakeView 1.2.1

Released Monday, September 16, 2019

What's New in this Release

  • GH-37 NuGet licence infomation
  • GH-40 [Android] Handle object disposed exception
  • GH-43 Improved the gradient list XAML

API Changes

  • The XAML for BackgroundGradientStops and BorderGradientStops 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 🎉

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

Xamarin.Forms PancakeView 1.1.8

Released Friday, August 23, 2019

What's New in this Release

  • GH-32 Added support for polygonal shapes
  • GH-33 Fixed some property changed implementations

Thank you 🎉

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