v1.0.0-rc
Changelog
- Apply the
modifier
argument of the WavySlider composable functions - Add an alias for type of wave velocity (i.e.
WaveVelocity
forPair<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.