Closed
Description
The following code does not set page's background color of a newly generated theme:
def main(page: Page):
page.bgcolor = colors.SECONDARY
page.update()
flet.app(target=main)
Expected behavior: A color from a custom theme is used.
Actual behavior: A color from default Flutter theme is used.