We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Why ASTextNode is overflowing instead of truncating…
HStackLayout(alignItems: .center) { img1.preferredSize(.init(width: 20, height: 20)).padding(.left, 9) img2.preferredSize(.init(width: 20, height: 20)) textNode.padding(.left, 6) }
The text was updated successfully, but these errors were encountered:
You need to set style.flexShrink not equal to 0 for your padding.
style.flexShrink
padding
Example without style.flexShrink:
Row { imageNode1 .sized(CGSize(same: 20)) .padding(.left(9)) imageNode2 .sized(CGSize(same: 20)) textNode .padding(.horizontal(6)) }
Example with style.flexShrink:
Row { imageNode1 .sized(CGSize(same: 20)) .padding(.left(9)) imageNode2 .sized(CGSize(same: 20)) textNode .padding(.horizontal(6)) .flex(shrink: 0.1) }
And with textNode.maximumNumberOfLines = 1:
textNode.maximumNumberOfLines = 1
Sorry, something went wrong.
No branches or pull requests
Why ASTextNode is overflowing instead of truncating…
HStackLayout(alignItems: .center) {
img1.preferredSize(.init(width: 20, height: 20)).padding(.left, 9)
img2.preferredSize(.init(width: 20, height: 20))
textNode.padding(.left, 6)
}
The text was updated successfully, but these errors were encountered: