Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

【编写你的第一个 Flutter App [2/2]】修改主题颜色的代码不适配Flutter2.5? #23

#1

如题,示例程序的主题颜色并不能被修改。
谢谢。

  • replies 2
  • views 1.2K
  • likes 0

是的,看来是无效的。如下可修改:

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    
    ThemeData themeData = ThemeData(
        colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.orange,)
    );

    return MaterialApp(
        title: 'Welcome to Flutter',
        theme: themeData,
        home: const RandomWords());
  }
}
#3

为什么这里的Colors.white就不行呢?orange,red之类的都是可以的。