NuvioStreaming/composeApp/src/iosMain/kotlin/com/nuvio/app/MainViewController.kt
tapframe dde6b2212f feat: Implement navigation and details screen for media items
- Added navigation support using Jetpack Compose Navigation.
- Created MetaDetailsScreen to display detailed information about media items.
- Introduced MetaDetailsRepository for fetching and managing media details.
- Added components for displaying action buttons, cast, and meta information.
- Updated HomeScreen and HomePosterCard to handle poster click events.
- Integrated new UI components into the existing app structure.
- Added platform-specific insets for better layout handling.
- Updated Gradle dependencies for navigation and serialization support.
2026-03-11 21:00:12 +05:30

12 lines
334 B
Kotlin

package com.nuvio.app
import androidx.compose.ui.window.ComposeUIViewController
import platform.UIKit.UIColor
private val nuvioBackgroundColor = UIColor(red = 0.008, green = 0.016, blue = 0.016, alpha = 1.0)
fun MainViewController() = ComposeUIViewController {
App()
}.apply {
view.backgroundColor = nuvioBackgroundColor
}