mirror of
https://github.com/hackku21/nearby_connections.git
synced 2024-10-27 19:14:01 +00:00
cleaned up auto connect
This commit is contained in:
parent
e19633f846
commit
1613f9a0c7
@ -40,8 +40,8 @@ class _MyBodyState extends State<Body> {
|
|||||||
super.initState();
|
super.initState();
|
||||||
WidgetsBinding.instance!.addPostFrameCallback((_) {
|
WidgetsBinding.instance!.addPostFrameCallback((_) {
|
||||||
// _userName = await FlutterUdid.consistentUdid;
|
// _userName = await FlutterUdid.consistentUdid;
|
||||||
startAdver();
|
startAdvertising();
|
||||||
startDisco();
|
startDiscovery();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -54,69 +54,6 @@ class _MyBodyState extends State<Body> {
|
|||||||
Map<int, String> map =
|
Map<int, String> map =
|
||||||
Map(); //store filename mapped to corresponding payloadId
|
Map(); //store filename mapped to corresponding payloadId
|
||||||
|
|
||||||
void startAdver() async {
|
|
||||||
try {
|
|
||||||
bool a = await Nearby().startAdvertising(
|
|
||||||
"adv" + userName,
|
|
||||||
strategy,
|
|
||||||
onConnectionInitiated: discoverOnConnectionInit,
|
|
||||||
onConnectionResult: (id, status) {
|
|
||||||
print("userName = $userName");
|
|
||||||
print("id = $id");
|
|
||||||
showSnackbar(status);
|
|
||||||
},
|
|
||||||
onDisconnected: (id) {
|
|
||||||
showSnackbar(
|
|
||||||
"Disconnected: ${endpointMap[id]!.endpointName}, id $id");
|
|
||||||
setState(() {
|
|
||||||
endpointMap.remove(id);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
);
|
|
||||||
showSnackbar("ADVERTISING: " + a.toString());
|
|
||||||
} catch (exception) {
|
|
||||||
showSnackbar(exception);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void startDisco() async {
|
|
||||||
try {
|
|
||||||
bool a = await Nearby().startDiscovery(
|
|
||||||
"dis" + userName,
|
|
||||||
strategy,
|
|
||||||
onEndpointFound: (id, name, serviceId) {
|
|
||||||
print("userName = $userName");
|
|
||||||
print("id = $id");
|
|
||||||
|
|
||||||
Nearby().requestConnection(
|
|
||||||
userName,
|
|
||||||
id,
|
|
||||||
onConnectionInitiated: (id, info) {
|
|
||||||
discoverOnConnectionInit(id, info);
|
|
||||||
},
|
|
||||||
onConnectionResult: (id, status) {
|
|
||||||
showSnackbar(status);
|
|
||||||
},
|
|
||||||
onDisconnected: (id) {
|
|
||||||
setState(() {
|
|
||||||
endpointMap.remove(id);
|
|
||||||
});
|
|
||||||
showSnackbar(
|
|
||||||
"Disconnected from: ${endpointMap[id]!.endpointName}, id $id");
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
onEndpointLost: (id) {
|
|
||||||
showSnackbar(
|
|
||||||
"Lost discovered Endpoint: ${endpointMap[id]!.endpointName}, id $id");
|
|
||||||
},
|
|
||||||
);
|
|
||||||
showSnackbar("DISCOVERING: " + a.toString());
|
|
||||||
} catch (e) {
|
|
||||||
showSnackbar(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Center(
|
return Center(
|
||||||
@ -128,86 +65,21 @@ class _MyBodyState extends State<Body> {
|
|||||||
Wrap(
|
Wrap(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
ElevatedButton(
|
ElevatedButton(
|
||||||
child: Text("Start Advertising"),
|
child: Text("Restart"),
|
||||||
onPressed: () async {
|
|
||||||
// try {
|
|
||||||
// bool a = await Nearby().startAdvertising(
|
|
||||||
// "adv" + userName,
|
|
||||||
// strategy,
|
|
||||||
// onConnectionInitiated: discoverOnConnectionInit,
|
|
||||||
// onConnectionResult: (id, status) {
|
|
||||||
// print("userName = $userName");
|
|
||||||
// print("id = $id");
|
|
||||||
// showSnackbar(status);
|
|
||||||
// },
|
|
||||||
// onDisconnected: (id) {
|
|
||||||
// showSnackbar(
|
|
||||||
// "Disconnected: ${endpointMap[id]!.endpointName}, id $id");
|
|
||||||
// setState(() {
|
|
||||||
// endpointMap.remove(id);
|
|
||||||
// });
|
|
||||||
// },
|
|
||||||
// );
|
|
||||||
// showSnackbar("ADVERTISING: " + a.toString());
|
|
||||||
// } catch (exception) {
|
|
||||||
// showSnackbar(exception);
|
|
||||||
// }
|
|
||||||
},
|
|
||||||
),
|
|
||||||
ElevatedButton(
|
|
||||||
child: Text("Stop Advertising"),
|
|
||||||
onPressed: () async {
|
|
||||||
await Nearby().stopAdvertising();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Wrap(
|
|
||||||
children: <Widget>[
|
|
||||||
ElevatedButton(
|
|
||||||
child: Text("Start Discovery"),
|
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
try {
|
try {
|
||||||
bool a = await Nearby().startDiscovery(
|
stopAll();
|
||||||
"dis" + userName,
|
startAdvertising();
|
||||||
strategy,
|
startDiscovery();
|
||||||
onEndpointFound: (id, name, serviceId) {
|
} catch (exception) {
|
||||||
print("userName = $userName");
|
showSnackbar(exception);
|
||||||
print("id = $id");
|
|
||||||
|
|
||||||
Nearby().requestConnection(
|
|
||||||
userName,
|
|
||||||
id,
|
|
||||||
onConnectionInitiated: (id, info) {
|
|
||||||
discoverOnConnectionInit(id, info);
|
|
||||||
},
|
|
||||||
onConnectionResult: (id, status) {
|
|
||||||
showSnackbar(status);
|
|
||||||
},
|
|
||||||
onDisconnected: (id) {
|
|
||||||
setState(() {
|
|
||||||
endpointMap.remove(id);
|
|
||||||
});
|
|
||||||
showSnackbar(
|
|
||||||
"Disconnected from: ${endpointMap[id]!.endpointName}, id $id");
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
onEndpointLost: (id) {
|
|
||||||
showSnackbar(
|
|
||||||
"Lost discovered Endpoint: ${endpointMap[id]!.endpointName}, id $id");
|
|
||||||
},
|
|
||||||
);
|
|
||||||
showSnackbar("DISCOVERING: " + a.toString());
|
|
||||||
} catch (e) {
|
|
||||||
showSnackbar(e);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
ElevatedButton(
|
ElevatedButton(
|
||||||
child: Text("Stop Discovery"),
|
child: Text("Stop"),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
await Nearby().stopDiscovery();
|
stopAll();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -271,6 +143,78 @@ class _MyBodyState extends State<Body> {
|
|||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void stopAll() async {
|
||||||
|
await Nearby().stopAllEndpoints();
|
||||||
|
await Nearby().stopAdvertising();
|
||||||
|
await Nearby().stopDiscovery();
|
||||||
|
setState(() {});
|
||||||
|
}
|
||||||
|
|
||||||
|
void startDiscovery() async {
|
||||||
|
try {
|
||||||
|
bool a = await Nearby().startDiscovery(
|
||||||
|
"dis" + userName,
|
||||||
|
strategy,
|
||||||
|
onEndpointFound: (id, name, serviceId) {
|
||||||
|
print("userName = $userName");
|
||||||
|
print("id = $id");
|
||||||
|
|
||||||
|
Nearby().requestConnection(
|
||||||
|
userName,
|
||||||
|
id,
|
||||||
|
onConnectionInitiated: (id, info) {
|
||||||
|
discoverOnConnectionInit(id, info);
|
||||||
|
},
|
||||||
|
onConnectionResult: (id, status) {
|
||||||
|
showSnackbar(status);
|
||||||
|
},
|
||||||
|
onDisconnected: (id) {
|
||||||
|
setState(() {
|
||||||
|
endpointMap.remove(id);
|
||||||
|
});
|
||||||
|
showSnackbar(
|
||||||
|
"Disconnected from: ${endpointMap[id]!.endpointName}, id $id");
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
onEndpointLost: (id) {
|
||||||
|
showSnackbar(
|
||||||
|
"Lost discovered Endpoint: ${endpointMap[id]!.endpointName}, id $id");
|
||||||
|
},
|
||||||
|
);
|
||||||
|
showSnackbar("DISCOVERING: " + a.toString());
|
||||||
|
} catch (e) {
|
||||||
|
showSnackbar(e);
|
||||||
|
}
|
||||||
|
setState(() {});
|
||||||
|
}
|
||||||
|
|
||||||
|
void startAdvertising() async {
|
||||||
|
try {
|
||||||
|
bool a = await Nearby().startAdvertising(
|
||||||
|
"adv" + userName,
|
||||||
|
strategy,
|
||||||
|
onConnectionInitiated: discoverOnConnectionInit,
|
||||||
|
onConnectionResult: (id, status) {
|
||||||
|
print("userName = $userName");
|
||||||
|
print("id = $id");
|
||||||
|
showSnackbar(status);
|
||||||
|
},
|
||||||
|
onDisconnected: (id) {
|
||||||
|
showSnackbar(
|
||||||
|
"Disconnected: ${endpointMap[id]!.endpointName}, id $id");
|
||||||
|
setState(() {
|
||||||
|
endpointMap.remove(id);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
showSnackbar("ADVERTISING: " + a.toString());
|
||||||
|
} catch (exception) {
|
||||||
|
showSnackbar(exception);
|
||||||
|
}
|
||||||
|
setState(() {});
|
||||||
|
}
|
||||||
|
|
||||||
/// Called upon Connection request (on both devices)
|
/// Called upon Connection request (on both devices)
|
||||||
/// Both need to accept connection to start sending/receiving
|
/// Both need to accept connection to start sending/receiving
|
||||||
void discoverOnConnectionInit(String id, ConnectionInfo info) {
|
void discoverOnConnectionInit(String id, ConnectionInfo info) {
|
||||||
|
Loading…
Reference in New Issue
Block a user