We shipped a login screen on iOS 26 with two buttons styled using the new .glassEffect() API. Signup worked. Login didn't. No crash, no warning, no error -- just... nothing happened when you tapped it. It took longer to find than I'd like to admit. The Setup Two buttons stacked vertically, 26pt apart. Standard VStack layout: VStack ( spacing : 26 ) { Spacer () Button { store . send ( . signupButtonTapped ) } label : { Text ( "Sign Up" ) . padding () . frame ( width : buttonWidth , height : 55 )
Comment
Sign in to join the discussion.
Loading comments…