The page I created is shifting to the left. I am getting a purple color error in the frame settings. "Invalid frame size (not negative or finite)." How can I fix? I'm learning Swiftui new I don't know what I did wrong. 
ZStack { GeometryReader{ geometry in Color.black.edgesIgnoringSafeArea(.all) VStack { Text("Picture").font(.system(size: 60)).foregroundColor(.init(red: 45/255, green: 0/255, blue: 112/255)) TextField("Adınız", text: $Name.text) .foregroundColor(.white) .padding([.leading, .trailing], 20) .font(Font.system(size: 30, design: .default)) .multilineTextAlignment(.center) .accentColor(Color.white) .frame(width: geometry.size.width - 100, height:50 , alignment: .center) .padding(5) .font(Font.system(size: 15, weight: .medium, design: .serif)) .overlay(RoundedRectangle(cornerRadius: 30).stroke(Color(#colorLiteral(red: 0.5411764706, green: 0.4549019608, blue: 0.2823529412, alpha: 1)), lineWidth: 1)) TextField("Soyadınız", text: $profilSurname) .textFieldStyle(PlainTextFieldStyle()) .padding([.leading, .trailing], 20) .font(Font.system(size: 30, design: .default)) .multilineTextAlignment(.center) .accentColor(Color.white) .foregroundColor(.white) .frame(width: geometry.size.width / 100, height:50 , alignment:.center) .padding(5) .font(Font.system(size: 15, weight: .medium, design: .serif)) .overlay(RoundedRectangle(cornerRadius: 30).stroke(Color(#colorLiteral(red: 0.5411764706, green: 0.4549019608, blue: 0.2823529412, alpha: 1)), lineWidth: 1)) Text(iliski)//-------------->this .frame(height: 50) .foregroundColor(.white) .font(Font.system(size: 25, design: .default)) .padding(5) .overlay( RoundedRectangle(cornerRadius: 30) .stroke(Color(#colorLiteral(red: 0.5411764706, green: 0.4549019608, blue: 0.2823529412, alpha: 1)), lineWidth:1)).padding(.horizontal, 50) } } } 