Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Android
Jetpack Compose Support — Zixflow Android SDK integration guide.
dependencies { implementation("com.zixflow.android:messaginginapp-compose:1.0.0") }
import androidx.compose.runtime.* import com.zixflow.messaginginapp.ModuleMessagingInApp @Composable fun MyApp() { // Your Compose UI MaterialTheme { Surface { NavHost(navController = rememberNavController()) { composable("home") { HomeScreen() } composable("profile") { ProfileScreen() } } } } }