esim_toolkit 0.0.1 esim_toolkit: ^0.0.1 copied to clipboard
A Flutter plugin for eSim, checker and installer. This repository hosts a Flutter plugin designed to check device compatibility with eSIM and facilitate the installation of eSIM profiles directly with [...]
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:esim_toolkit/esim_toolkit.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
bool _isSupportESim = false;
final esimToolkitPlugin = EsimToolkit();
@override
void initState() {
super.initState();
initPlatformState();
esimToolkitPlugin.onEvent.listen((event) {
debugPrint(event);
});
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
bool isSupportESim;
// Platform messages may fail, so we use a try/catch PlatformException.
// We also handle the message potentially returning null.
try {
List<String> newer = ["iPhone17,4"];
isSupportESim = await esimToolkitPlugin.isSupportESim(newer);
} on PlatformException {
isSupportESim = false;
}
// 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(() {
_isSupportESim = isSupportESim;
});
}
Future<void> installEsim() async {
await esimToolkitPlugin.installEsimProfile("LPA:1\$lpa.airalo.com\$TEST");
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
children: [
Text('isSupportESim: $_isSupportESim\n'),
ElevatedButton(
onPressed: () {
installEsim();
},
child: const Text('Install eSim'),
)
],
),
),
),
);
}
}