Post

Replies

Boosts

Views

Activity

Reply to ScrollViewReader's scrollTo may be broken on iOS 15
Has mentionned by @archy88 for me replacing inner VStack with LazyVStack did fix the issue. Expect that will help some of you.         ScrollViewReader { scrollProxy in           ScrollView(.vertical) {               VStack (spacing: 0) {                   ForEach(parents) { parent in                       Text(parent.name)             .padding()                       LazyVStack (spacing: 0) { // With VStack Scroll issue                             ForEach(parent.childs) { child in                              ChildView(child)                 .id(child.uuid)                 .padding()             }           }           .id(parent.id)         }       }               Spacer()     }     .onAppear() {       if let selectedChild = selectedChild {         scrollProxy.scrollTo(selectedChild.uuid, anchor: .center)       }     }   }   .padding() }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’21
Reply to Primary Language Change issue
I got the same issue. I have a primary language DE with all screenshot submitted and other language FR where I also have specific screenshot. I did create a new language EN and added all needed screenshots (and double checked all other required fieds like what's new, etc). I can switch my primary language from DE to FR but not to newly create EN. From my point of view, what is needed is that all screenshot are submitted "for each version in this language" that means that even the published version also need to have the screenshot in that language (and is not using the one from the current Primary language). That means that, for some of us, it will need two update to change the language. A first one to add screenshot on the published version, and another one to switch primary language because you can't change default language on a published version. I think that is because, even if you can only change the primary language when preparing a new version, "The Primary Language will be immediately made available on App Store" as it is said on info (?) juste above the field.
Oct ’20