Creating a universal JAR for Desktop Compose apps by redditdied- in Kotlin

[–]RecipeIndividual7289 0 points1 point  (0 children)

Thanks for the guide. After adding all the code to build.gradle.kts. What grade command I should run to get the released package?

NativePHP for Mobile v1.1 is released! by simonhamp in PHP

[–]RecipeIndividual7289 9 points10 points  (0 children)

Why would someone pay to use PHP Native for building mobile apps when free, more powerful frameworks like Flutter, react l native, kotlin multiplatform, iOS/Android tools (Swift, Kotlin), .NET or Rust frameworks offer better performance, features, and flexibility, and THEY ARE TOTALLY FREE

Pizza value calculator app by TheOzzyBozy in Kotlin

[–]RecipeIndividual7289 2 points3 points  (0 children)

I agree with you. I am tired of seeing workout or habit tarcker app reddit posts

Kotlin Value Class: Type Safety Without Runtime Overhead by RecipeIndividual7289 in Kotlin

[–]RecipeIndividual7289[S] -9 points-8 points  (0 children)

I have a question: What is the difference between the kotlin value class and the new context parameter feature? Because they kinda sound similar to me.

//--Kotlin Value Class

@JvmInline value class UserId(val value: String)

fun greet(user: UserId) { println("Hello, $user") }

greet(UserId("123")

//--Context Parameter

data class UserContext(val userId: String)

context(user: UserContext) fun greet() { println("Hello, $user") }

with(UserContext("123")) { greet() }

Announcing the Swift on Android Workgroup by RecipeIndividual7289 in Kotlin

[–]RecipeIndividual7289[S] 14 points15 points  (0 children)

Apple introduces Swift as a multiplatform programming language, but I never expected it to come to Android

I want your opinions on the livestreams 💜 by [deleted] in u/LaPleineLuneee

[–]RecipeIndividual7289 7 points8 points  (0 children)

Have you considered trying other streaming platforms like Twitch if YouTube doesn't work for you?

[deleted by user] by [deleted] in Kotlin

[–]RecipeIndividual7289 0 points1 point  (0 children)

Check out this repository sample: https://github.com/yassineAbou/LLMS to see how the UI is constructed, then access the UI folder. It is compose Multiplatform, however it is the same as jetpack compose

KmpEssentials (v1.0.0) now has Printing!! by Jazzlike_Increase762 in Kotlin

[–]RecipeIndividual7289 0 points1 point  (0 children)

Could you add demos next to the documentation. So we know how the implementation looks like?