Improve Apple, Android and Windows (#40)
* Cleanup connection * Reverse search list * Bump version * Fix Android serviceUuids in scanResults * Fix typo * Improve cleanup on apple * Improve Apple reconnection and service discovery * Persist long scan result name on Windows Co-authored-by: navidecklabs <navidecklabs@users.noreply.github.com> * Update changelog --------- Co-authored-by: Rohit Sangwan <rohitsangwan647@gmail.com> Co-authored-by: navidecklabs <navidecklabs@users.noreply.github.com>
This commit is contained in:
@@ -225,7 +225,8 @@ class _MyAppState extends State<MyApp> {
|
||||
itemCount: _scanResults.length,
|
||||
separatorBuilder: (context, index) => const Divider(),
|
||||
itemBuilder: (context, index) {
|
||||
BleScanResult scanResult = _scanResults[index];
|
||||
BleScanResult scanResult =
|
||||
_scanResults[_scanResults.length - index - 1];
|
||||
return ScannedItemWidget(
|
||||
scanResult: scanResult,
|
||||
onTap: () {
|
||||
|
||||
Reference in New Issue
Block a user