I'm simply trying to run the simplest of programs just to make it work, but I keep getting a window with a black background with nothing in it. I've tried changing the background color but nothing seems to work?
from guizero import App, Text, TextBox, PushButton
app = App("Hello world", bg = "white")
welcome_message = Text(app, text="Welcome to my app", size=40, font="Times New Roman", color="white")
my_name = TextBox(app)
update_text = PushButton(app, command=say_my_name, text="Display my name")
app.display()