当前位置: 首页> 教育> 大学 > 河南省干部任免最新公示_网页版百度网盘_百度竞价排名价格_sem工具是什么

河南省干部任免最新公示_网页版百度网盘_百度竞价排名价格_sem工具是什么

时间:2025/7/13 3:41:59来源:https://blog.csdn.net/nonagontech/article/details/142832319 浏览次数:0次
河南省干部任免最新公示_网页版百度网盘_百度竞价排名价格_sem工具是什么

前言

现在有一个需求:要能够获取到局域网中的遮阳帘设备。通过搜索发现flutter_mdns_plugin可以满足这个需求

Pub:flutter_mdns_plugin | Flutter package

GitHub:https://github.com/terrabythia/flutter_mdns_plugin

MDNS服务类型

要根据不同的MDNS服务类型来发现对应的设备

服务类型参考:mDNS的服务类型

全部代码

import 'package:flutter/material.dart';
import 'package:flutter_mdns_plugin/flutter_mdns_plugin.dart';class MyApp1 extends StatefulWidget {const MyApp1({super.key});@overrideState<MyApp1> createState() => _MyApp1State();
}class _MyApp1State extends State<MyApp1> {List<String> devices = [];bool isScanning = false;List<String> messageLog = <String>[];//设备扫描函数Future<void> scanDevices() async {setState(() {isScanning = true;devices.clear();});const String serviceType = '_http._tcp';DiscoveryCallbacks discoveryCallbacks = DiscoveryCallbacks(onDiscovered: (ServiceInfo info) {print("Discovered ${info.toString()}");},onDiscoveryStarted: () {print("Discovery started");},onDiscoveryStopped: () {print("Discovery stopped");},onResolved: (ServiceInfo info) {print("Resolved Service ${info.toString()}");setState(() {devices.add(info.toString());});},);final mdnsPlugin =  FlutterMdnsPlugin(discoveryCallbacks: discoveryCallbacks);try {await mdnsPlugin.startDiscovery(serviceType);await Future.delayed(const Duration(seconds: 1)); // 扫描5秒钟await mdnsPlugin.stopDiscovery();} catch (e) {print('Error during device scan: $e');}setState(() {isScanning = false;});}@overrideWidget build(BuildContext context) {return Scaffold(appBar: AppBar(title: const Text('Device Scanner'),),body: Column(children: [ElevatedButton(onPressed: isScanning ? null : scanDevices,child: const Text('Scan Devices'),),const SizedBox(height: 16),if (isScanning)const CircularProgressIndicator()else if (devices.isEmpty)Text('No devices found.')elseExpanded(child: ListView.builder(itemCount: devices.length,itemBuilder: (context, index) {return ListTile(title: Text(devices[index]),);},),),],),);}
}

关键字:河南省干部任免最新公示_网页版百度网盘_百度竞价排名价格_sem工具是什么

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: