> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zixflow.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Jetpack Compose Support

> Jetpack Compose Support — Zixflow Android SDK integration guide.

### In-App Messaging with Compose

Use the Compose-optimized in-app messaging module:

```kotlin theme={null}
dependencies {
    implementation("com.zixflow.android:messaginginapp-compose:1.0.0")
}
```

### Compose Integration

```kotlin theme={null}
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() }
            }
        }
    }
}
```

In-app messages will automatically overlay your Compose UI when triggered.

***
