Skip to content

1.0.1

Latest
Compare
Choose a tag to compare
@skydoves skydoves released this 23 Aug 06:26
4cecb99

🎉 Released a new version 1.0.1! 🎉

What's New?

  • Updated compile SDK version to 30, Gradle version internally.
  • Added a generic type of the flourish layout.
val flourish: Flourish<LinearLayout> = createFlourish(parentLayout) {
      setFlourishLayout(R.layout.layout_flourish_main) // this resource's root layout is a LinearLayout
      setFlourishAnimation(FlourishAnimation.BOUNCE)
      setFlourishOrientation(FlourishOrientation.TOP_LEFT)
      setShowOnStart(true)
    }
    
    val inflatedView: LinearLayout = flourish.flourishView
  • Renamed setIsShowedOnStart(true) to setShowOnStart(true).
  • Added some exceptions and messages.
  • Removed unused plugins and dependencies internally.