尝试使用ButtonTheme设置最小宽度时出现错误

时间:2018-09-19 18:36:15

标签: android ios flutter dart-2

我正在尝试在ButtonTheme中设置minWidth。我收到以下错误消息:

Error: Getter not found: 'context'.
compiler message:     minWidth: MediaQuery.of(context).size.width-40,

作为参考,我在这里共享代码:

final resetButton = ButtonTheme(
    minWidth: MediaQuery.of(context).size.width-40,
    height: 50.0,
    child: new RaisedButton(
        color: blueColor,
        onPressed: (){
//          Navigator.of(context).pushNamed(Home.tag);
        },
        child: Text('Log In',
          style: styleLoginButton,
        ),
        shape: new RoundedRectangleBorder(borderRadius: new BorderRadius.circular(30.0))
    ),
  );

1 个答案:

答案 0 :(得分:1)

在没有上下文的情况下,您不能使用MediaQuery.of(context)。从context调用此代码时,请通过build(BuildContext context) { ... }或将代码移至build() { ... }