Skip to content

heestand-xyz/UI3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UI3

3D UI lib for SwiftUI

import SwiftUI
import UI3

struct ContentView: View {
    var body: some View {
        ZStack {
            Color.gray
                .edgesIgnoringSafeArea(.all)
            UI3 {
                HStack {
                    Box()
                        .chamferRadius(0.05)
                    VStack {
                        Box()
                            .chamferRadius(0.05)
                        ZStack {
                            Box()
                                .chamferRadius(0.05)
                            Box()
                                .chamferRadius(0.05)
                        }
                    }
                }
            }
        }
    }
}

About

3D UI layout package for SwiftUI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages