An open API service indexing awesome lists of open source software.

https://github.com/elemental-design/elemental-swift

Elemental Swift – build design systems for SwiftUI
https://github.com/elemental-design/elemental-swift

Last synced: 3 months ago
JSON representation

Elemental Swift – build design systems for SwiftUI

Awesome Lists containing this project

README

        

# elemental-swift
Elemental Swift – build design systems for SwiftUI

## Initial Specification

### Components

- `` -> `HStack`
- `` -> `VStack`
- `` -> `Button`

### Pseudo-Code

```swift
struct Box: View {
var body: some View {
HStack()
}
}

struct Pressable: View {
var label: String

var body: some View {
Button(action: {
self.isTimerActive.toggle()
}, label: {
Text(label)
.frame(minWidth: 64)
})
.buttonStyle(PlainButtonStyle())
}
}
```