flutter_hx_org 1.0.2
flutter_hx_org: ^1.0.2 copied to clipboard
好信云企业通讯录数据SDK用于对接好信云企业通讯录
example/lib/main.dart
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:flutter_hx_org/flutter_hx_org.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'Unknown';
final _flutterHxOrgPlugin = FlutterHxOrg();
@override
void initState() {
super.initState();
initPlatformState();
}
String orgToken =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3MjE3OTgxMTk2NjUsInBob25lIjoiMTg3NDU4MzgxOTgiLCJ1c2VySWQiOjEwMDAwNDkzNjA3fQ.HtedNZy6RNZwro3Ccuh7U-YPTFeRH_QWt4-1FP3Gqqw';
String orgUrl = 'https://internal.haoxin.cn:19443/webbff';
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String platformVersion;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
platformVersion = await _flutterHxOrgPlugin.getPlatformVersion() ??
'Unknown platform version';
} on PlatformException {
platformVersion = 'Failed to get platform version.';
}
_flutterHxOrgPlugin.initsdk(baseUrl: orgUrl, token: orgToken);
String? result = await _flutterHxOrgPlugin.getOrgClassList();
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {
_platformVersion = result ?? platformVersion;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Text('Running on: $_platformVersion\n'),
),
),
);
}
}