1

我在应用程序中总共制作了 14 个屏幕,您可以在下面我提供的链接的代码中看到。我创建了两个凸起的按钮,一个名为“Wonders of World”的按钮在按下时会将其带到第二个屏幕,另一个名为“Wonders of India”的按钮会将其带到第十一个屏幕。不幸的是,世界的第一个按钮奇迹是不可见的。为什么不显示? 这是运行应用程序时的图像,您只能看到一个凸起的按钮可见。

代码的链接

4

1 回答 1

0

只需将两个按钮都包裹在 Row Like 中

Row(
              mainAxisAlignment: MainAxisAlignment.spaceBetween,
              children: [
                RaisedButton(
                  child: Text("Wonders of World"),
                  onPressed: (){
                    Navigator.push(context, MaterialPageRoute(builder: (context) => SplashUI()));
                  },
                  color: Colors.red,
                  textColor: Colors.yellow,
                  padding: EdgeInsets.fromLTRB(10, 10, 10, 10),
                  splashColor: Colors.grey,
                ),
                RaisedButton(
                  child: Text("Wonders of India"),
                  onPressed: (){
                    Navigator.push(context, MaterialPageRoute(builder: (context) => EleventhScreen()));
                  },
                  color: Colors.red,
                  textColor: Colors.yellow,
                  padding: EdgeInsets.fromLTRB(10, 10, 10, 10),
                  splashColor: Colors.grey,
                )
              ],
            ),
于 2020-09-01T10:47:27.163 回答