想学习 flutter 写一个小 app ,主页刚开始就碰到问题了:
想在 Row 上加一个点击事件
return Scaffold(
appBar: AppBar(
// Here we take the value from 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 交流群,可以指点一下
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.