This repository has been moved to nesp_sdk_flutter_social and will be deleted!!!
This repository has been moved to nesp_sdk_flutter_social and will be deleted!!!
This repository has been moved to nesp_sdk_flutter_social and will be deleted!!!
A Flutter plugin for social.
Support QQ Group:428741525
This plugin supports Android and iOS.
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
try {
isSuccess = await FlutterNespSocial.joinQQFriend(
qqFriendNumber: "input your qq friend number",
);
} on PlatformException catch (e) {
//do something
}
try {
isSuccess = await FlutterNespSocial.joinQQGroup(
androidKey: "input your android key",
groupUin: "input your group uin",
iosKey: "input your ios key",
);
} on PlatformException catch (e) {
//do something
}
try {
isSuccess = await FlutterNespSocial.openWeiboUser(
uid: “input your weibo user id”,
);
} on PlatformException catch (e) {
// do something
}
try {
isCalledOtherApp = await FlutterNespSocial.openOtherApp(
androidPackageName: "input your android app package name",
androidClassName: "input your android activity class name",
iosAppUrl: "input your IOS APP URL",
);
} on PlatformException catch (e) {
//do something
}