在不同类别中具有不同的主题

时间:2019-12-03 14:23:22

标签: flutter themes

我正在fluter上制作一个多屏简单应用程序,第一个屏幕是主页,它有两个选项,每个选项都使用户可以导航到特定屏幕。我的问题是我希望每个屏幕都有不同的主题。我该怎么办?

1 个答案:

答案 0 :(得分:0)

将每个屏幕包裹在Theme内,

Theme(
      data: ThemeData(// Your theme here
          brightness: Brightness.light,
          accentColorBrightness: Brightness.dark,
          primaryColor: Colors.grey,
          iconTheme: IconThemeData(color: Colors.white)),
      child: Scaffold(
        appBar: AppBar(
          title: Text("Portfolio app - Made with flutter"),
          centerTitle: true,
        ),
        body: ,
.......