Skip to content

v1.0.0-rc

Compare
Choose a tag to compare
@mahozad mahozad released this 01 Feb 17:52
· 47 commits to main since this release
54f718d

Changelog

  • Apply the modifier argument of the WavySlider composable functions
  • Add an alias for type of wave velocity (i.e. WaveVelocity for Pair<Dp, WaveDirection>)
    Makes it more readable if you want to use it for function parameters or variable declarations. For example:
    import ir.mahozad.multiplatform.wavyslider.WaveVelocity
    
    fun doSomething(
     // velocity: Pair<Dp, WaveDirection>
        velocity: WaveVelocity
    ) {
     // var newVelocity: Pair<Dp, WaveDirection>? = null
        var newVelocity: WaveVelocity? = null
        newVelocity = 10.dp to TAIL // OR WaveVelocity(10.dp, TAIL)
    }
  • Update Kotlin to 1.9.22
  • Update Compose Multiplatform to 1.5.12 (which is based on Compose 1.5.4)

For your convenience, an archive of the library artifacts is also available below.