0.4.0
Pre-release
Pre-release
Milestone:
- Add ZStack
- Add overlay and background support
- Add Color opacity support
- Add layoutPriority support
- Fix broken SPI documentation link
import OpenSwiftUI
struct ContentView: View {
var body: some View {
ZStack(alignment: .leading) {
Color.red
.opacity(0.5)
.frame(width: 200, height: 200)
}
.overlay(alignment: .topLeading) {
Color.green.opacity(0.5)
.frame(width: 100, height: 100)
}
.background(alignment: .bottomTrailing) {
Color.blue.opacity(0.5)
.frame(width: 100, height: 100)
}
}
}


What's Changed
- Add ConcatenatedCollection by @Kyle-Ye in #323
- Add InlineArray implementation by @Kyle-Ye in #324
- Update _GraphInputs implementation by @Kyle-Ye in #325
- Add HVStack and ZStack interface by @Kyle-Ye in #326
- Update dependency to fix doc build issue by @Kyle-Ye in #327
- Fix SPI documentation build issue by @Kyle-Ye in #328
- Update ViewList by @Kyle-Ye in #329
- Update TupleView by @Kyle-Ye in #330
- Add _ViewListOutputs.concat support by @Kyle-Ye in #331
- Update NSHostingView by @Mx-Iris in #333
- Add ZStack support by @Kyle-Ye in #332
- Fix SafeAreaInsetsModifier by @Kyle-Ye in #334
- Add Color opacity support by @Kyle-Ye in #335
- Add background and overlay support by @Kyle-Ye in #336
- Add layoutPriority support by @Kyle-Ye in #337
Full Changelog: 0.3.0...0.4.0