Skip to content

0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Mar 05:51
· 468 commits to master since this release

Added

  • Add NonNullFlowWrapper and NullableFlowWrapper, that are wrappers for Flows
    that provides a more convenient API for subscribing to the Flows on Darwin targets (iOS, macOS, tvOS, watchOS)
    // Kotlin code
    val flow: StateFlow<Int>
    // Swift code
    NonNullFlowWrapper<KotlinInt>(flow: flow).subscribe(
      scope: scope,
      onValue: { print("Received ", $0) }
    )

Changed

  • Add more example, refactor example code.
  • Add more docs: 0.x docs.
  • Add more tests.
  • Gradle 8.0.2.
  • Dokka 1.8.10.