fluttersdk_kl34fsr31233fef3xfhdfdqdfknkfcn90 0.0.1 fluttersdk_kl34fsr31233fef3xfhdfdqdfknkfcn90: ^0.0.1 copied to clipboard
Brands use a wide range of offline and online communication touch points with multiple identities across them.
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:fluttersdk_kl34fsr31233fef3xfhdfdqdfknkfcn90/flutterpluginautomation.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';
String _nativeData = 'Unknown';
final _flutterpluginautomationPlugin = Flutterpluginautomation();
@override
void initState() {
super.initState();
_flutterpluginautomationPlugin.initWebSdk();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String? nativeData;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
nativeData = await _flutterpluginautomationPlugin.getRandromString() ?? 'Unknown';
} on PlatformException {
nativeData = 'unable to get data form native';
}
// 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(() {
_nativeData = nativeData!;
});
}
getSdkVersion(){
initPlatformState();
}
@override
Widget build(BuildContext context) {
return SafeArea(
child: MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
children: [
const SizedBox(height: 20,),
ElevatedButton(onPressed: (){
getSdkVersion();
}, child: const Text('Get Sdk Version')),
const SizedBox(height: 20,),
Text('SDK Version :: $_nativeData\n'),
],
),
),
),
),
);
}
}