mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-25 10:33:07 +00:00
- 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.
12 lines
334 B
Kotlin
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
|
|
}
|