In my case
theme: ThemeData(primarySwatch: Colors.red),
didn't work, despite the course I am following clearly using it and it was working without an issue... what worked was:
theme: ThemeData(colorScheme: ColorScheme.fromSeed(seedColor: Colors.red),),