[Solved] Can flutter_beacon package be used to make Social Distancing app in Flutter?

In order for two phones to detect each other with BLE beaconing you need them to do two things: Advertise a beacon over BLE Scan for beacons over BLE But flutter_beacon only does item 2 above. For item 1, you need another package. Try beacon_broadcast: https://pub.dev/packages/beacon_broadcast You need to do both at once. If you … Read more