-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathstring_uid.dart
More file actions
149 lines (135 loc) · 4.34 KB
/
Copy pathstring_uid.dart
File metadata and controls
149 lines (135 loc) · 4.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// ignore_for_file: unnecessary_brace_in_string_interps
import 'package:agora_rtc_engine/agora_rtc_engine.dart';
import 'package:agora_rtc_engine_example/config/agora.config.dart' as config;
import 'package:agora_rtc_engine_example/components/log_sink.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:permission_handler/permission_handler.dart';
/// StringUid Example
class StringUid extends StatefulWidget {
/// Construct the [StringUid]
const StringUid({Key? key}) : super(key: key);
@override
State<StatefulWidget> createState() => _State();
}
class _State extends State<StringUid> {
late final RtcEngine _engine;
bool isJoined = false;
late TextEditingController _controller0, _controller1;
late final RtcEngineEventHandler _rtcEngineEventHandler;
@override
void initState() {
super.initState();
_controller0 = TextEditingController(text: config.channelId);
_controller1 = TextEditingController(text: config.stringUid);
_initEngine();
}
@override
void dispose() {
super.dispose();
_dispose();
}
Future<void> _dispose() async {
_engine.unregisterEventHandler(_rtcEngineEventHandler);
await _engine.leaveChannel();
await _engine.release();
}
Future<void> _initEngine() async {
_engine = createAgoraRtcEngine();
await _engine.initialize(RtcEngineContext(
appId: config.appId,
channelProfile: ChannelProfileType.channelProfileLiveBroadcasting,
));
_rtcEngineEventHandler = RtcEngineEventHandler(
onError: (ErrorCodeType err, String msg) {
logSink.log('[onError] err: $err, msg: $msg');
},
onJoinChannelSuccess: (RtcConnection connection, int elapsed) {
logSink.log(
'[onJoinChannelSuccess] connection: ${connection.toJson()} elapsed: $elapsed');
setState(() {
isJoined = true;
});
},
onUserInfoUpdated: (int uid, UserInfo info) {
logSink
.log('[onUserInfoUpdated] uid: ${uid} UserInfo: ${info.toJson()}');
},
onLeaveChannel: (RtcConnection connection, RtcStats stats) {
logSink.log(
'[onLeaveChannel] connection: ${connection.toJson()} stats: ${stats.toJson()}');
setState(() {
isJoined = false;
});
},
);
_engine.registerEventHandler(_rtcEngineEventHandler);
await _engine.enableAudio();
await _engine.setClientRole(role: ClientRoleType.clientRoleBroadcaster);
}
void _joinChannel() async {
if (defaultTargetPlatform == TargetPlatform.android) {
await Permission.microphone.request();
}
await _engine.joinChannelWithUserAccount(
token: config.token,
channelId: _controller0.text,
userAccount: _controller1.text);
}
_leaveChannel() async {
await _engine.leaveChannel();
}
_getUserInfo() async {
final userInfo = await _engine.getUserInfoByUserAccount(_controller1.text);
// .then((userInfo) {
logSink.log('getUserInfoByUserAccount ${userInfo.toJson()}');
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text('${userInfo.toJson()}'),
));
// }).catchError((err) {
// logSink.log('getUserInfoByUserAccount ${err}');
// });
}
@override
Widget build(BuildContext context) {
return Stack(
children: [
Column(
children: [
TextField(
controller: _controller0,
decoration: const InputDecoration(hintText: 'Channel ID'),
),
TextField(
controller: _controller1,
decoration: const InputDecoration(hintText: 'String User ID'),
),
Row(
children: [
Expanded(
flex: 1,
child: ElevatedButton(
onPressed: isJoined ? _leaveChannel : _joinChannel,
child: Text('${isJoined ? 'Leave' : 'Join'} channel'),
),
)
],
),
],
),
Align(
alignment: Alignment.bottomRight,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ElevatedButton(
onPressed: _getUserInfo,
child: const Text('Get userInfo'),
),
],
),
)
],
);
}
}