We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38ede1a commit b8e4c53Copy full SHA for b8e4c53
Sources/LiveViewNative/Stylesheets/StylesheetParser.swift
@@ -119,6 +119,15 @@ struct StylesheetParser<M: ViewModifier & ParseableModifierValue>: Parser {
119
AnyArgument(context: context)
120
}
121
.map({ _ in () })
122
+ // keyword list
123
+ ListLiteral {
124
+ Identifier()
125
+ Whitespace()
126
+ ":".utf8
127
128
+ AnyArgument(context: context)
129
+ }
130
+ .map({ _ in () })
131
132
133
0 commit comments