This works: <code>var rs = new RichString().Add("Hello world", textColor: SKColors.Red);</code> This does not and text is still black. Am I missing anything? <code>var rs = new RichString().Add("Hello world"); rs.TextColor(SKColors.Green); </code>
This works:
var rs = new RichString().Add("Hello world", textColor: SKColors.Red);This does not and text is still black. Am I missing anything?
var rs = new RichString().Add("Hello world");
rs.TextColor(SKColors.Green);