Good afternoon
Anyone knows a reason why this fails to build?
Text(order.firstName + " " + order.lastName + "\n" + order.address + "\n" + order.ZIP + " " + order.city)
Gives always:
The compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
But this works:
Text(order.firstName + " " + order.lastName + "\n" + order.address)
Is there a limit of number of lines I could use with Text()?
thanks in advance richard