Answers for "swiftui vstack width as screen dimention"

1

swiftui width screen

extension UIScreen{
   static let screenWidth = UIScreen.main.bounds.size.width
   static let screenHeight = UIScreen.main.bounds.size.height
   static let screenSize = UIScreen.main.bounds.size
}
Posted by: Guest on May-27-2021
0

Make a VStack fill the width of the screen in SwiftUI

struct ContentView : View {
        var body: some View {
            VStack(alignment: .leading) {
                Text("Hello World")
                    .font(.title)
                Text("Another")
                    .font(.body)
                Spacer()
            }
            .frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity, alignment: .topLeading)
            .background(Color.red)
        }
    }
Posted by: Guest on November-28-2019

Code answers related to "swiftui vstack width as screen dimention"

Code answers related to "Swift"

Browse Popular Code Answers by Language