赞
踩
再开发过程中我们经常会使用到WebSocket,而插件库为我们提供了一个使用非常方便的插件
web_socket_channel
我们需要根据自己的Flutter 版本选择对应的即可
web_socket_channel: ^1.1.0
在pubspec.yaml中我们引入,然后pub get 一下
pub get
到此就完成插件的引用。下面就是使用了
官网的代码使用
- import 'package:web_socket_channel/web_socket_channel.dart';
- import 'package:web_socket_channel/status.dart' as status;
-
- main() async {
- var channel = IOWebSocketChannel.connect(Uri.parse('ws://localhost:1234'));
-
- channel.stream.listen((message) {
- channel.sink.add('received!');
- channel.sink.close(status.goingAway);
- });
- }
下面是我对其进行了简单的封装
- import 'dart:convert';
- import 'package:flutter/foundation.dart';
- import 'package:jianfa/view/main/my/message/detail/MessageDetailSocket.dart&#
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。