The following code works: ``` <VStack :for={message <- @messages}> <Text><%= message.name %></Text> <Spacer/> <Text><%= message.content %></Text> </VStack> ``` The following will crash the app: ``` <VStack :for={message <- @messages}> <Text alignment: .leadin><%= message.name %></Text> <Spacer/> <Text><%= message.content %></Text> </VStack> ``` Note the `alignment: .leadin` mistake I made. The markup is definitely wrong, but the app shouldn't crash.
The following code works:
The following will crash the app:
Note the
alignment: .leadinmistake I made.The markup is definitely wrong, but the app shouldn't crash.