简体   繁体   English

如何在按下时更改凸起按钮的颜色?

[英]How do I change the color of raisedButton onPressed?

I'm trying to change the color of the raisedButton when pressed, I have been having trouble with this for a while, the code I have right now for the whole button widget is我试图在按下时更改凸起按钮的颜色,我已经有一段时间遇到了这个问题,我现在拥有的整个按钮小部件的代码是

children: <Widget>[
                  Expanded(
                    child: Container(
                      child: new SizedBox(
                        width: 15,
                        height: 60,
                        child: new RaisedButton(
                            color: pressed ? Color(0xFF1D1E33) : Colors.blue,
                            hoverColor: Colors.blueAccent,
                            focusColor: Colors.blueAccent,
                            child: Text(
                              'Male',
                              style: TextStyle(
                                  fontSize: 26,
                                  fontWeight: FontWeight.bold,
                                  color: Colors.white),
                              textAlign: TextAlign.center,
                            ),
                            onPressed: () => setState((){pressed = !pressed;})),
                      ),

I also had a boolean as shown below but I received an error when running the code saying "Failed assertion: boolean expression must not be null"我也有一个如下所示的布尔值,但在运行代码时收到一个错误,提示“失败的断言:布尔表达式不能为空”

bool get pressed => null;

set pressed(bool pressed) {}

You can copy paste run full code below您可以在下面复制粘贴运行完整代码
code snippet代码片段

  bool _pressed = false;

  bool get pressed {
    return _pressed;
  }

  set pressed(bool pressed) {
    _pressed = pressed;
  }

working demo工作演示

在此处输入图片说明

full code完整代码

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      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> {
  int _counter = 0;
  bool _pressed = false;

  bool get pressed {
    return _pressed;
  }

  set pressed(bool pressed) {
    _pressed = pressed;
  }

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Container(
                child: new SizedBox(
                    width: 100,
                    height: 60,
                    child: new RaisedButton(
                        color: pressed ? Color(0xFF1D1E33) : Colors.blue,
                        hoverColor: Colors.blueAccent,
                        focusColor: Colors.blueAccent,
                        child: Text(
                          'Male',
                          style: TextStyle(
                              fontSize: 26,
                              fontWeight: FontWeight.bold,
                              color: Colors.white),
                          textAlign: TextAlign.center,
                        ),
                        onPressed: () => setState(() {
                              pressed = !pressed;
                            })))),
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM