Post

Replies

Boosts

Views

Activity

Reply to 1 Action Pending
That's an information message telling you what you can do in Business section. Maybe you just have nothing to do ? Усі країни та: that may relate to the countries where you distribute your apps, you may miss some information there. Could you tell what is the content of action pending ?
Jul ’24
Reply to detecting Phone Number changed
if we could at least know if the phone number provided by the server differs from the current phone number on the smartphone. You may file a feedback to ask for such evolution. But as even this provides sensitive information about user (know he/she did change), I do doubt you would ever get it.
Topic: App & System Services SubTopic: General Tags:
Jul ’24
Reply to Weird problem with my custom view in SwiftUI
I made some tests. It seems that padding on ScrollView is creating the issue. This code work. no ScrollView, padding applies to HStack var body: some View { ScrollView { VStack { // ScrollView(.horizontal) { HStack { LeagueSelectorButton(text: "Premier League", leagueID: 39, isSelected: $isSelected) } // } // .scrollIndicators(.hidden) .padding() This one doesn't: padding applies to ScrollView var body: some View { ScrollView { VStack { ScrollView(.horizontal) { HStack { LeagueSelectorButton(text: "Premier League", leagueID: 39, isSelected: $isSelected) } } // .scrollIndicators(.hidden) .padding() This works as well: ScrollView but padding moved as HStack modifier: var body: some View { ScrollView { VStack { ScrollView(.horizontal) { HStack { LeagueSelectorButton(text: "Premier League", leagueID: 39, isSelected: $isSelected) } .padding() // <<-- Works if padding here } .scrollIndicators(.hidden) // .padding() // <<-- Does not work if padding here
Topic: UI Frameworks SubTopic: SwiftUI
Jul ’24
Reply to Xcode Version 15.4 (15F31d) is consistently changing "class" and "struct" to "enum"
Cat typing would have been a good explanation 🐱 More seriously. I have not met such issues recently. But I remember, with older versions of Xcode to have faced issues with files that seemed to change in my back or not to take into account I had made. If I remember correctly, it happened when I reopened a file through the "history" via tabs and not via the file list on the left pane. Then Xcode would reload an older version. A solution is often to call Clean Build Folder in the Product menu. Hope that helps.
Jul ’24