How do you sequence cursor movement in SwiftUF for Apple TV

I have the following HStack in my appleTV app, but the remote will not go to the Button on the right side of the stack.

Code Block
 HStack{
    if( self.meeting.meetingEndedState == false){
    Button(action:{
_ = self.meeting.addAttendee()
        } ) {
Image(systemName: "plus.circle.fill")
        .font(Font.system(size: 42, design: .rounded))
        }
.mask(Circle())
        .padding()
        Text("\(self.meeting.numberOfAttendees)")
        .padding()
        Button(action:{
            _ = self.meeting.removeAttendee() })
{
          Image(systemName: "minus.circle.fill")
            .font(Font.system(size: 42, design: .rounded))
         }
         .mask(Circle())
         .padding()
      } else {
      Button(action: {
          self.meeting.meetingReset()
            self.meeting.numberOfAttendees=1
         }, label: {
          Text("Reset")
          }).buttonStyle(MyButtonStyle(color: .blue))
         }
      }
      .padding()


What I am doing wrong?

Accepted Reply

Resolved.. problem was button shapes were causing SwiftUI on tvOS to not process correctly.. went back to "default" buttons.. and works as expected.

Replies

Resolved.. problem was button shapes were causing SwiftUI on tvOS to not process correctly.. went back to "default" buttons.. and works as expected.