Answer the question
In order to leave comments, you need to log in
Swipe on flutter text?
The task is to implement a similar swipe on text widgets.
I split the text into words and output them through map
List<String> words = ["test", "test2", "test3"];
Wrap(
alignment: WrapAlignment.start,
direction: Axis.horizontal,
children: words.map((entry) => GestureDetector(
onTap: () {
print(entry);
},
child: Text(entry),
)
);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question