凸起的按钮不可单击颤振

时间:2020-10-02 12:30:49

标签: flutter dart

Hi制作了一个ScrollWheelListView,其中带有RaisedButtons,但是这些按钮不可单击,它们对按下的语句不起作用。

谢谢您的帮助。

 Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        backgroundColor: Colors.blueGrey,
        body: ListWheelScrollView(
            children: [
              RaisedButton(
                child: Text(
                  "2020",
                  style: TextStyle(fontSize: 130, color: _color_2020),
                ),
                color: Colors.blueGrey,
                elevation: 0,
                onPressed: () {
                  print("j");
                },
              ),
              RaisedButton(
                child: Text(
                  "2021",
                  style: TextStyle(fontSize: 130, color: _color_2021),
                ),
                color: Colors.blueGrey,
                elevation: 0,
                onPressed: () {
                  print("2021");
                },
              ),
              RaisedButton(
                child: Text(
......

0 个答案:

没有答案