Skip to content

Commit

Permalink
Fixed default animation spec providers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasyl Melnyk committed Aug 30, 2023
1 parent f4770ae commit c44d9e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ object FadingEdgesScrollConfigDefaults {
* The ComposeFadingEdges advises using an animation (custom or default [AnimationSpec]) to provide an interactive fading edges size transitions (due to the dynamic
* items size or partial content). Especially useful when [Dynamic.IsLerpByDifferenceForPartialContent] is enabled.
*/
val AnimationSpec: AnimationSpec<Float> = spring()
val AnimationSpec: AnimationSpec<Float>
get() = spring()

/** The default values for [FadingEdgesScrollConfig.Dynamic] type. */
object Dynamic {
Expand Down
2 changes: 1 addition & 1 deletion plugins/src/main/java/ProjectConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.gradle.jvm.toolchain.JavaLanguageVersion

object ProjectConfig {
const val versionCode = 1
const val versionName = "1.0.1"
const val versionName = "1.0.2"

const val namespace = "com.gigamole.composefadingedges"
const val group = "com.github.GIGAMOLE"
Expand Down

0 comments on commit c44d9e6

Please sign in to comment.