flutter - 更改onPressed上按钮的背景颜色和文本颜色,并在未按下Flutter时重新设置为默认值

标签 flutter dart flutter-layout

我是新来的 flutter 。我连续有两个按钮,我想在按下其他按钮时更改第一个按钮的颜色和文本,如果按下第二个按钮,则第一个按钮应恢复为默认颜色,第二个按钮应恢复为默认颜色选择新的颜色。有什么办法可以通过索引来实现这一目标?

 Row(
                    mainAxisAlignment: MainAxisAlignment.spaceEvenly,
                    mainAxisSize: MainAxisSize.max,
                    crossAxisAlignment: CrossAxisAlignment.center,
                    children: [
                      SizedBox(
                        height: 150,
                          width: MediaQuery.of(context).size.width * 0.45,

                        child: RaisedButton(
                          color: primaryColor,
                          onPressed: () {},
                          child: Padding(
                            padding: const EdgeInsets.only(top: 20.0),
                            child: Column(
                              children: [
                                Text('Stunning Solo', style: TextStyle(fontSize: 15,color: Colors.white)),
                                Text('Current Plan', style: TextStyle(fontSize: 12,color: Colors.white)),
                                Padding(
                                  padding: const EdgeInsets.all(8.0),
                                  child: Text("\$$dollars3",style: TextStyle(fontSize: 20,color: Colors.white)),
                                ),
                                Text(
                                  "Free forever",
                                  style: TextStyle(
                                      fontWeight: FontWeight.bold,
                                      fontSize: 13,
                                      color: whiteColor),
                                ),

                              ],
                            ),
                          ),
                        ),
                      ),

                      SizedBox(height: 20),

                      SizedBox(
                        height: 150,
                        width: MediaQuery.of(context).size.width * 0.45,

                        child: RaisedButton(
                          color: primaryColor,
                          onPressed:
                              () {},

                          child: Column(
                            children: [
                              Padding(
                                padding: const EdgeInsets.only(top: 20.0),
                                child: Text('Startup Pack', style: TextStyle(fontSize: 15,color: Colors.white)),
                              ),
                              Text('Introductory Offer', style: TextStyle(fontSize: 12,color: Colors.white)),
                              Padding(
                                padding: const EdgeInsets.all(10.0),
                                child: Row(
                                    mainAxisAlignment: MainAxisAlignment.center,
                                    mainAxisSize: MainAxisSize.max,
                                    crossAxisAlignment: CrossAxisAlignment.center,
                                    children: <Widget>[

                                      Text(
                                        "\$$dollars",
                                        style: TextStyle(
                                            fontWeight: FontWeight.bold,
                                            fontSize: 20,
                                            decoration: TextDecoration.lineThrough),
                                      ),
                                      SizedBox(width: 5),
                                      Text(
                                        "\$$dollars2",
                                        style: TextStyle(
                                            fontWeight: FontWeight.bold,
                                            fontSize: 20,
                                            color: whiteColor),
                                      ),
                                    ]),

最佳答案

您可以为此使用ToggleButton

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  List<bool> buttonsState = [
    true,
    false
  ];

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(

        title: Text(widget.title),
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: ToggleButtons(
          highlightColor: Colors.transparent,
          splashColor: Colors.transparent,
          color: Colors.blue,
          fillColor: Colors.blue,
          isSelected: buttonsState,
          children: <Widget>[
            Padding(
              padding: EdgeInsets.only(
                left: 8,
                right:8,
              ),
              child: Text(
                "Free forever", style: _getTextStyle(0),
                textAlign: TextAlign.center,
              ),
            ),
            Padding(
              padding: EdgeInsets.only(
                left: 8,
                right: 8,
              ),
              child: Text(
                "Startup Pack", style: _getTextStyle(1),
                textAlign: TextAlign.center,
              ),
            ),
          ],
          onPressed: _updateButtonState,
          borderRadius: BorderRadius.all(Radius.circular(8.0)),
        ),
      ),
    );
  }

  _updateButtonState(int index) {
    setState(() {
      for (int buttonIndex = 0; buttonIndex < buttonsState.length; buttonIndex++) {
        if (buttonIndex == index) {
          buttonsState[buttonIndex] = true;
        } else {
          buttonsState[buttonIndex] = false;
        }
      }
    });
  }

  TextStyle _getTextStyle(int index) {
    return buttonsState[index]
        ? TextStyle(
        fontWeight: FontWeight.bold,
        fontSize: 20,
        color: Colors.white) : TextStyle(
        fontWeight: FontWeight.bold,
        fontSize: 20,
        color: Colors.blue);
  }
}

关于flutter - 更改onPressed上按钮的背景颜色和文本颜色,并在未按下Flutter时重新设置为默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63780385/

相关文章:

android - 如何修复推送通知灰色圆圈错误?

flutter - 这是什么时候的 flutter 了一流的调用前把美元符号是什么意思?

android-studio - 在使用 Android Studio 启动期间失去与设备的连接

Flutter:我希望我的屏幕在选择 Textfield 时自动向上滚动,这样我的提交按钮就不会被隐藏?

flutter - 如何从另一个类中定义的平面按钮的onPressed调用主类中定义的方法(('_MyHomePageState()')?

Flutter ListView 在列内崩溃

firebase - 以下代码中有一个异常。 OAuth使用Google-firebase flutter 地登录

dart - Flutter NestedScrollView/SliverAppBar - 不需要的底边距

json - Flutter如何JSON序列化数据表单api

android - Flutter是否有可用的Play核心库?