Giter Site home page Giter Site logo

Comments (3)

hristogochev avatar hristogochev commented on June 3, 2024 2

You can use the following interface and function to be able to pass the PaddingValues:

@Composable
fun CurrentTabX(
    innerPadding: PaddingValues, snackBarHostState: SnackbarHostState
) {
    val tabNavigator = LocalTabNavigator.current
    val currentTab = tabNavigator.current as TabX

    tabNavigator.saveableState("currentTab") {
        currentTab.Content(innerPadding, snackBarHostState)
    }
}


interface TabX : Tab {

    @Composable
    fun Content(
        innerPadding: PaddingValues,
        snackBarHostState: SnackbarHostState,
    )

    @Composable
    override fun Content() {
        error("Called Content without arguments")
    }
}

Simply inherit from TabX instead of Tab for your Tabs and replace CurrentTab() with CurrentTabX()

from voyager.

hristogochev avatar hristogochev commented on June 3, 2024 2

If you also want to then add a fade transition between the Tabs you could use:

typealias TabTransitionContent = @Composable AnimatedVisibilityScope.(Tab) -> Unit


@Composable
fun TabTransition(
    navigator: TabNavigator,
    transition: AnimatedContentTransitionScope<Tab>.() -> ContentTransform,
    modifier: Modifier = Modifier,
    content: TabTransitionContent
) {
    AnimatedContent(
        targetState = navigator.current,
        transitionSpec = transition,
        modifier = modifier
    ) { tab ->
        navigator.saveableState("transition", tab) {
            content(tab)
        }
    }
}

@Composable
fun FadeTabTransition(
    navigator: TabNavigator,
    modifier: Modifier = Modifier,
    animationSpec: FiniteAnimationSpec<Float> = spring(stiffness = Spring.StiffnessMediumLow),
    content: TabTransitionContent
) {
    TabTransition(
        navigator = navigator,
        modifier = modifier,
        content = content,
        transition = { fadeIn(animationSpec = animationSpec) togetherWith fadeOut(animationSpec = animationSpec) }
    )
}

And then call the following for the content of your Scaffold instead of CurrentTabX:

content = { innerPadding ->
    FadeTabTransition(it) { tab ->
        (tab as TabX).Content(innerPadding, snackBarHostState)
    }
},

from voyager.

harry248 avatar harry248 commented on June 3, 2024 1

Sorry for the late reply @hristogochev... Looks like a nice solution, thank you!

from voyager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.