tencent_im_sdk_plugin 3.9.9 tencent_im_sdk_plugin: ^3.9.9 copied to clipboard
Instant Messaging (Instant Messaging) is developed based on QQ's underlying IM capabilities.
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() {
// Set the status bar style first
SystemUiOverlayStyle style = SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
);
SystemChrome.setSystemUIOverlayStyle(style);
runApp(
MaterialApp(
home: Center(
child: Text("demo&API Example 请在腾讯云即时通信IM官网下载"),
),
),
);
}