Search code examples
androidflutterdartflutter-layoutmobile-development

Flutter multiple finger press events


I'm currently experimenting with Flutter and its abilities. I found this app Chwazi Finger Chooser on the Google Play Store.

This app allows the users to put multiple fingers on a blank screen, a circle is drawn around each finger and then one is selected.

  • Does Flutter have the ability for multiple finger presses at the same time like this app?
  • And for the location of that press to be shared so that a circle may be drawn around that press?

I don't want people to just do this for me, I'm just wondering really if anyone has tried this sort of thing before in Flutter. Seeking advice as still a novice.

App Screenshot


Solution

  • You're looking for the multitouch feature in Flutter.

    Read more here: Handling multitouch in flutter