:rocket: ComposeNativeTray 0.6.0 Released! We're e...
# feed
u
🚀 ComposeNativeTray 0.6.0 Released! We're excited to announce a major new feature: Composable Icon Content 🎨 You can now define your tray icon directly with Compose UI! No more managing icon files manually — everything is declarative and dynamic:
Copy code
Tray(
    iconContent = {
        Icon(Icons.Default.Favorite, contentDescription = "", tint = Color.White, modifier = Modifier.fillMaxSize())
    },
    tooltip = "My Application",
    primaryAction = { /* your action */ }
) { /* menu */ }
*Highlights*: • Fully dynamic tray icons • Seamless cross-platform support (Windows, macOS, Linux) • Smooth recomposition and scaling • Old
iconPath
API is now deprecated Read the full release here Thanks for supporting ComposeNativeTray!
🚀 4
👍 2
🔥 4
K 11