想学习 flutter 写一个小 app ,主页刚开始就碰到问题了:
想在 Row 上加一个点击事件
return Scaffold( appBar: AppBar( // Here we take the value frm the MyHomePage object that was created by // the App.build method, and use it to set our appbar title. title: Text(widget.title), ), body: Container( padding: EdgeInsets.all(15),//这里想做一个 padding 但是未生效 color: Colors.red, child: GestureDetector( onTap: () { print('object'); }, child: Container( child: Row( children: [Text('默认'), Spacer(), Icon(Icons.arrow_right)], ), ), ), ) // This trailing comma makes auto-formatting nicer for build methods. ); 但是实际效果是只有点击 Text 和 Icon 的位置才会触发,不知道为啥。。。
求一个 flutter 交流群,可以指点一下
