SwiftUI icon indicating copy to clipboard operation
SwiftUI copied to clipboard

Examples projects using SwiftUI released by WWDC2019. Include Layout, UI, Animations, Gestures, Draw and Data.

Results 9 SwiftUI issues
Sort by recently updated
recently updated
newest added

Hi, you might want to add Petulia. This is the repo: https://github.com/bigimot22/Petulia-Open

i created a pull request to fix this problem

I've looked into GitHub user search project and found out that views contain unnecessary property wrappers (@State). According to WWDC sessions those shouldn't appear in such context. I removed them...

**Describe the problem** A clear and concise description of what the problem is. Button(action: withAnimation { likeButtonPressed }, label: { Text( self.liked ? "❤️" :"💔") })

bug

var body: some View { ZStack { ForEach( self.matrix.flatten.map { IdentifiableIndexedBlock(indexedBlock: $0) } ) { block in self.createBlock(block.item) .frame(width: 65, height: 65, alignment: .center) .position(x: CGFloat(block.index.0) * (65 + 12)...

bug

The Swift compiler is unable to type-check the ForEach expression in BlockGridView.swift within a reasonable time. This issue occurs at line 67, where a complex mapping operation is performed inside...

- Moved map operation outside ForEach to reduce compiler complexity - Used indices instead of direct iteration to optimize performance - Ensured better type-checking and improved readability - Fixed SwiftUI...

## Test Contribution for Learning GitHub Workflow This is a **test pull request** created as part of learning the GitHub contribution workflow (fork, branch, commit, pull request). ### What's included:...

SwiftUIOTPEntry is a lightweight and customizable SwiftUI component for entering OTP (One-Time Password) or PIN-style codes. Designed for simplicity and full compatibility with iOS 17+. https://github.com/julioarregoitia/SwiftUIOTPEntry

enhancement