I want to use a different theme for my flutter app, depending on the OS it's started on. How can I detect the OS when choosing what theme to apply?
Theme.of(context).platform == TargetPlatform.iOS
doesn't work, because I haven't applied a theme yet...