从联系人中随机选择一个号码并在 flutter 中拨打电话?

Radomly pick a number from contacts and call in flutter?

当用户点击或触摸该按钮时,应用程序将从用户的phone联系人列表中随机选择一个号码并拨打电话。我在 google Play 商店看到了这种应用程序,但我想知道是否可以用 flutter 创建一个这样的应用程序?

如果是,是否有我可以查看的资源? 提前致谢

是的,有可能。

1。如何获得 phone 个数字?

你可以看看pub.dev, the official package repository for Dart and Flutter apps. Search for "get phone contact". Pick one package, then use it to get the contact list.

2。你得到了列表,如何从列表中随机选择一个数字?

Google "dart get random element from list" and click the first stack overflow link你懂的

3。你知道号码了,如何拨打 phone 电话?

Repeat step number 1.