3

我想在我的颤振应用程序中更改后退按钮的颜色。

这是我目前所拥有的:屏幕截图

我想将颜色从浅蓝色更改为白色。我在网上搜索过,但一无所获。这是我的代码(注意我的按钮是自动创建的)

@override
  Widget build(BuildContext context) {
    return CupertinoPageScaffold(
      navigationBar: CupertinoNavigationBar(
        heroTag: 'menupage',
        transitionBetweenRoutes: false,
        middle: Text(
          'Menu Page',
          style: kSendButtonTextStyle,
        ),
      ),

提前谢谢了 !

4

2 回答 2

8

我通过设置 CupertinoTextThemeData 解决了...

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return CupertinoApp(
      theme: CupertinoThemeData(
        primaryColor:
            Colors.white, //change color of the BOTTOM navbar icons when selected
        textTheme: CupertinoTextThemeData(
          primaryColor:
              Colors.white, //change color of the TOP navbar icon

感谢卢卡斯为我指明了正确的方向

于 2019-09-07T07:16:13.533 回答
1

例子

在此处输入图像描述 在此处输入图像描述

actionsForegroundColor: Colors.whiteCupertinoNavigationBar

做吧

return  CupertinoPageScaffold(
      navigationBar: CupertinoNavigationBar(actionsForegroundColor: Colors.white,
        heroTag: 'menupage',
        transitionBetweenRoutes: false,
        middle: Text(
          'Menu Page',
          style: TextStyle(),
        ),
      ), child: Text(''),
    );
于 2019-09-06T18:47:35.213 回答