| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 1.0.0 Release Candidate 5.tar.gz | 2019-10-23 | 5.5 MB | |
| 1.0.0 Release Candidate 5.zip | 2019-10-23 | 5.7 MB | |
| README.md | 2019-10-23 | 789 Bytes | |
| Totals: 3 Items | 11.2 MB | 0 | |
Enhancement
-
Add support for SwiftUI compatibility :tada: (#58)
:::swift struct HelloMessage: Component, View { ... }
struct ContentView: View { var body: some View { ScrollView { VStack { Text("GREET") .font(.title) .padding(.horizontal, 16)
HelloMessage("World") .frame(height: 60) .background(Color.red) } } }}
-
Add Group.init without elements (#50)
Breaking Changes
- Add
Component.intrinsicContentSize(for:)to get intrinsic content size for content to infer size of the UIView in SwiftUI (#58)