https://stackoverflow.com/a/59891334/1334703 ```swift TextField("placeholder", text: .constant("")) ``` ```swift struct SignInButtons_Previews: PreviewProvider { static var previews: some View { SignInButtons(backgroundColor: Color.blue, signInUrl: .constant("http://www.apple.com"), showModal: .constant(false)) } } ```