You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 10, 2026. It is now read-only.
A common mistake is writing a style attribute with spaces as delimiters instead of semicolons ;:
<Elementstyle="padding() background(.red)"/>
This should log a warning, ideally pointing to the position where the semicolon should be inserted. A message similar to this could be used:
Missing semicolon between modifiers in `style` attribute:<Element style="padding() background(.red)"/>
^ add a `;` semicolon after `padding()`
home_live.swiftui.neex:1:25
Alternatively, spaces could be allowed as a delimiter as well or instead of semicolons.