如何在颤动中单击按钮时更改卡片视图的颜色?

How to change the color of the cardview on button click in flutter?

我有几个按钮,我需要根据按钮点击设置卡片视图的颜色。 基本上,我正在向我的 post 添加一个主题,所以在预览页面上,我需要允许用户通过单击按钮 select 他们选择的颜色。

截图: CardView Page with Buttons

按钮代码:

               Padding(
                        padding: const EdgeInsets.only(top: 10),
                        child: Row(
                          children: [
                            Expanded(
                              child: MaterialButton(
                                onPressed: () {},
                                color: Colors.yellow,
                                shape: CircleBorder(),
                              ),
                            ),
                            Expanded(
                              child: MaterialButton(
                                onPressed: () {},
                                color: Colors.orange,
                                shape: CircleBorder(),
                              ),
                            ),
                            Expanded(
                              child: MaterialButton(
                                onPressed: () {},
                                color: Colors.brown,
                                shape: CircleBorder(),
                              ),
                            ),
                            Expanded(
                              child: MaterialButton(
                                onPressed: () {},
                                color: Colors.blue,
                                shape: CircleBorder(),
                              ),
                            ),
                            Expanded(
                              child: MaterialButton(
                                onPressed: () {},
                                color: Colors.green,
                                shape: CircleBorder(),
                              ),
                            ),
                            Expanded(
                              child: MaterialButton(
                                onPressed: () {},
                                color: Colors.black,
                                shape: CircleBorder(),
                              ),
                            ),
                          ],
                        ),
                      ),

卡片浏览代码:

                Card(
                          child: Container(
                            decoration: BoxDecoration(
                                color: Colors.blue,
                                border: Border.all(
                                    color: MyColors.black, width: 1.5),
                                borderRadius: BorderRadius.circular(10)),
                            child: Column(
                              children: [
                                Row(
                                  children: [
                                    Padding(
                                      padding: const EdgeInsets.all(8.0),
                                      child: CircleAvatar(
                                        backgroundImage:
                                            CachedNetworkImageProvider(
                                                _profileurl),
                                      ),
                                    ),
                                    Text(_username),
                                  ],
                                ),
                                Padding(
                                  padding: const EdgeInsets.all(8.0),
                                  child: Obx(
                                    () => Text(
                                      pollDataController1.question.value,
                                      style: TextType.boldHeading,
                                    ),
                                  ),
                                ),
                                Obx(
                                  () => ClipRRect(
                                    borderRadius: BorderRadius.circular(10),
                                    child: Image.asset(
                                      (pollImageController.imageDisplay.value),
                                      width: 320,
                                      height: 170,
                                      fit: BoxFit.cover,
                                    ),
                                  ),
                                ),
                                Padding(
                                  padding: const EdgeInsets.symmetric(
                                      vertical: 10.0),
                                  child: Column(
                                    children: [
                                      Column(
                                        children: [
                                          Row(
                                            mainAxisAlignment:
                                                MainAxisAlignment.center,
                                            children: [
                                              Obx(
                                                () => Text(
                                                  pollDataController1
                                                          .op1.value +
                                                      "  ",
                                                  style: TextStyle(
                                                    color: MyColors.offBlack,
                                                    fontSize: 16.0,
                                                  ),
                                                ),
                                              ),
                                              Obx(
                                                () => Text(pollDataController1
                                                    .op1Emoji.value),
                                              ),
                                              SizedBox(
                                                width: 25.0,
                                              ),
                                              Obx(
                                                () => Text(
                                                  pollDataController1
                                                          .op2.value +
                                                      "  ",
                                                  style: TextStyle(
                                                    color: MyColors.offBlack,
                                                    fontSize: 16.0,
                                                  ),
                                                ),
                                              ),
                                              Obx(
                                                () => Text(pollDataController1
                                                    .op2Emoji.value),
                                              ),
                                            ],
                                          ),
                                        ],
                                      ),
                                      SizedBox(height: 13.0),
                                      Column(
                                        children: [
                                          Row(
                                            mainAxisAlignment:
                                                MainAxisAlignment.center,
                                            children: [
                                              Obx(
                                                () => Text(
                                                  pollDataController1
                                                          .op3.value +
                                                      "  ",
                                                  style: TextStyle(
                                                    color: MyColors.offBlack,
                                                    fontSize: 16.0,
                                                  ),
                                                ),
                                              ),
                                              Obx(
                                                () => Text(pollDataController1
                                                    .op3Emoji.value),
                                              ),
                                              SizedBox(
                                                width: 25.0,
                                              ),
                                              Obx(
                                                () => Text(
                                                  pollDataController1
                                                          .op4.value +
                                                      "  ",
                                                  style: TextStyle(
                                                    color: MyColors.offBlack,
                                                    fontSize: 16.0,
                                                  ),
                                                ),
                                              ),
                                              Obx(
                                                () => Text(pollDataController1
                                                    .op4Emoji.value),
                                              ),
                                            ],
                                          ),
                                        ],
                                      ),
                                    ],
                                  ),
                                ),
                              ],
                            ),
                          ),
                        ),

您可以使用一个全局变量来设置颜色,并使用一个函数在点击每个圆形按钮时更改颜色。

例如:

Color cardBackgroundColor = Colors.white;
  
void changeColor(Color changeToColor) {
        setState(() {
            cardBackgroundColor = changeToColor;
         });
  }

然后在您的按钮代码中这样使用它:

Expanded(
         child: MaterialButton(
         onPressed: changeColor(Colors.yellow),
         color: Colors.yellow,
         shape: CircleBorder(),
         ),
      ),

并在 Cardview 代码中将其更改为:

Card(child: Container(
                 decoration: BoxDecoration(
                 color: cardBackgroundColor,
                 border: Border.all(
                 color: MyColors.black, width: 1.5),
                 borderRadius: BorderRadius.circular(10)),

这将是最快的方法,尽管它可能不是最干净的。