I want if Someone long press on ListTile, than copy the Text..
Here is snippet of my code,
<code>Card(
margin: EdgeInsets.symmetric(horizontal: 25.0, vertical: 10.0),
child: ListTile(
leading: Icon(
Icons.call,
color: Colors.teal,
size: 30.0,
),
title: Text(
'+11 11111 11111',
style: TextStyle(
color: Colors.black,
fontFamily: 'EncodeSansExpanded',
fontSize: 15.0,
),
),
)
),
</code>
<code>Card(
margin: EdgeInsets.symmetric(horizontal: 25.0, vertical: 10.0),
child: ListTile(
leading: Icon(
Icons.call,
color: Colors.teal,
size: 30.0,
),
title: Text(
'+11 11111 11111',
style: TextStyle(
color: Colors.black,
fontFamily: 'EncodeSansExpanded',
fontSize: 15.0,
),
),
)
),
</code>
Card(
margin: EdgeInsets.symmetric(horizontal: 25.0, vertical: 10.0),
child: ListTile(
leading: Icon(
Icons.call,
color: Colors.teal,
size: 30.0,
),
title: Text(
'+11 11111 11111',
style: TextStyle(
color: Colors.black,
fontFamily: 'EncodeSansExpanded',
fontSize: 15.0,
),
),
)
),
I want to do like, anyone long-press on it than copy the number in above code..
New contributor
Alpesh Jasani is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.