Skip to content

Releases: euuungb/eungabi

0.4.0

23 Jan 17:05
Compare
Choose a tag to compare

What's Changed

New Feature

Fix

Full Changelog: 0.3.3...0.4.0

0.3.3

10 Jan 18:08
2688955
Compare
Choose a tag to compare

What's Changed

Fix issue

Full Changelog: 0.3.2...0.3.3

0.3.2

11 Dec 16:02
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.1...0.3.2

0.3.1

27 Nov 13:58
Compare
Choose a tag to compare

0.3.0

17 Nov 16:19
Compare
Choose a tag to compare

What's Changed

  • support Web target (Wasm, Js) 🎉

Full Changelog: 0.2.1...0.3.0

0.2.1

12 Nov 15:39
acdb566
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.0...0.2.1

0.2.0

21 Oct 18:01
d2087f7
Compare
Choose a tag to compare

What's Changed

  • 0.2.0 by @easternkite in #27
  • support desktop target 🎉
  • update kotlin to 2.0.21, compose multiplatform to 1.7.0

0.1.0-alpha01

16 Oct 17:23
d004885
Compare
Choose a tag to compare
0.1.0-alpha01 Pre-release
Pre-release

0.1.0-alpha01 🎉

  • Navigation Support
    • support Predictive Back (Android, iOS)
    • support Shared Element Transition

Simple to use

You can write code simply, in a style similar to the Jetpack Navigation Compose. A detailed guide has scheduled. (comming soon)

val controller = rememberEunGabiController()
EunGabiNavHost(
    modifier = Modifier,
    controller = egController,
    startDestination = "main",
) {
    composable("main") {
        MainComponent("main") {
            egController.navigate("details")
        }
    }
    composable("details") {
        DetailsComponent(
            "details",
            onNavigateBack = egController::navigateUp
        ) {
            egController.navigate("detailA")
        }
    }
}

What's Changed

New Contributors

Full Changelog: https://github.com/easternkite/eungabi/commits/0.1.0-alpha01