-
-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support spacing
property on HStack
/VStack
#273
Conversation
Definitely reasonable to use grids for Stacks at least until |
Yeah, I have no problems with using grid. |
CSS Grid is a great way to support child spacing! I wrote about using them in React here. Would love to help out with this if you're looking for contributors 🙂 |
We're always looking for contributors, thank you for the offer! Please feel free to open a PR even if you just started working on this. You can mark it as a draft even if it's work in progress, that will let everyone know what you're working on. Just open an issue if you see any problems or need any help! 🙂 |
# Conflicts: # NativeDemo/TokamakDemo.xcodeproj/project.pbxproj # Sources/TokamakDOM/App/App.swift # Sources/TokamakDOM/Core.swift
a028f18
to
ff5335c
Compare
It's much easier to implement stack spacing when stacks are rendered as single-row or single-column grids, and grid gaps already work in all browsers. For this we need to slightly bump browser version requirements, most notably from Safari 11 to Safari 12.
Resolves #272.