gpt4 book ai didi

android - 如何获取 TextWidget onTap 的文本

转载 作者:行者123 更新时间:2023-11-28 23:21:56 25 4
gpt4 key购买 nike

我有一个 ListView,它在文本小部件中显示日期。点击文本小部件,我想要字符串中的文本。我怎样才能得到它?

这是我的代码。

 children: <Widget>[
GestureDetector(
onTap: () {
print('OnTapped');
print(arrayDay[i].toString());
// get the text of TextWidget here
},
child: new Text(
arrayDay[i].toString(),
style: new TextStyle(
fontWeight: FontWeight.w400),
),
),

最佳答案

在点击方法中,您可以从列表中获取数据。所以我在这里发布了一些代码,以便获得更多想法

return ListView.builder(
itemCount: count,
itemBuilder: (BuildContext context, int position) {
return Card(
color: Colors.white,
elevation: 2.0,
child: ListTile(

title: Text(this.noteList[position].title,
style: titleStyle,
),
subtitle: Text(this.noteList[position].date),

onTap: () {
debugPrint('Note Data '+ this.noteList[position].title);
debugPrint('Data '+ 'Here your Data Get'); // you can get data here
},
),
); // Card
});

关于android - 如何获取 TextWidget onTap 的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59528035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com