如何在Flutter中创建重音按钮?

时间:2018-09-21 01:16:11

标签: flutter

我正在尝试在Flutter中创建一个凸起的“重音”按钮-也就是说,背景颜色与该应用的重音主题相同。这是我的代码:

new RaisedButton(
  onPressed: _signInPressed,
  child: new Text('Sign in with Google'),
  color: Theme.of(context).accentColor,
)

问题是文本颜色仍然是黑色。如何在AppBar中将文本颜色设置为白色?

1 个答案:

答案 0 :(得分:3)

目前尚无获取重音按钮的官方方法。 您可以通过以下方式使自己拥有:

class AccentButton extends StatelessWidget {
  final VoidCallback onPressed;
  final Widget child;

  const AccentButton({this.child, this.onPressed, Key key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    final theme = Theme.of(context);

    return RaisedButton(
      onPressed: onPressed,
      child: child,
      textColor: theme.accentTextTheme.button.color,
      highlightColor: theme.accentColor,
      color: theme.accentColor,
    );
  }
}