when you have BeginHorizontal(“someString”) it tries to use the style called “someString”
You are passing an empty string, so it’s trying to find a style called “” (which doesnt exist)
you can use an overload with no paramaters
You saved me from so much trouble!
I thought that when I wrote only (); without any parameters, it was giving an error but I think it was something else that gave the error then. Thank you so much!