Are there any UI Frameworks like SwiftUI?

Greetings!

I have became an iOS developer the past couple of months, and I fell in love with SwiftUI!
If you don’t know what SwiftUI is, it is a framework that allows you to make UI Elements with the Swift programming language.

For example, here is a basic Text element:

Text("Hello, world")
        .fontWeight(.heavy)
        .foregroundColor(.red)

The dots in the next lines of code are called modifiers.

Instead of using .Event:Connect() all of the time, it is simple, you can just use a modifier, for example:

                .onAppear {
                    // Do Something
                }

Now, I want to rework all of the UI in my game to use something like SwiftUI. After using SwiftUI, I see the benefits of it. Now I know there probably can’t be a 1-1 recreation on Roblox, but is there something similar to SwiftUI on Roblox?

Thanks in advance!