简体   繁体   中英

Flutter - Get/Set Android and IOS device user name for Bluetooth/Wifi discovery

I tried to use the device_info_plus package but I could not find no options for getting or setting the Android or Ios device user name so that it appears as Someone's Iphone on wifi/bluetooth discovery. Is not there any method to achieve that?

import 'package:device_info/device_info.dart';

DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
AndroidDeviceInfo androidInfo = await deviceInfo.androidInfo;
print('Running on ${androidInfo.model}');  // e.g. "Moto G (4)"

IosDeviceInfo iosInfo = await deviceInfo.iosInfo;
print('Running on ${iosInfo.utsname.machine}');  // e.g. "iPod7,1"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM