Swiftui Textfield Height

//It can be solved by using a .frame modifier, and the height argument

TextField("Random text", text: $text)
	.frame(height: CGFloat)

//This creates a frame around the textfield, and then sets the height to be a specific number of pixels
lmaocoder