commonMain.com.lt.compose_views.nav.NavContent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ComposeViews Show documentation
Show all versions of ComposeViews Show documentation
Jatpack(JetBrains) Compose views
package com.lt.compose_views.nav
import androidx.compose.runtime.Composable
import com.lt.compose_views.compose_pager.ComposePagerScope
/**
* creator: lt 2023/10/14 [email protected]
* effect : [PagerNav]的Compose内容
* [PagerNav]'s Compose content
* warning:
*/
interface NavContent {
/**
* 导航的路由
* Navigation Routing
*/
val route: String
/**
* 导航的内容
* NavigationContent
*/
@Composable
fun Content(scope: ComposePagerScope)
}