sim_service 0.0.1 copy "sim_service: ^0.0.1" to clipboard
sim_service: ^0.0.1 copied to clipboard

outdatedDart 1 only

A new flutter plugin project for getting sim data service *this plugin runs with android for now *.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:sim_service/sim_service.dart';

void main() async {
  runApp(new MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {
  SimData _simData;

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    SimData simData;

    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      simData = await SimService.getSimData;
    } on PlatformException {
      print(simData);
    }
    print(simData.carrierName);
    // 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(() {
      _simData = simData;
    });
  }

  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
        home: new Scaffold(
            appBar: new AppBar(
              title: const Text('Plugin example app'),
            ),
            body: Column(
              children: <Widget>[
                Text('the main sim card is ${_simData.carrierName}'),
                Padding(
                  padding: EdgeInsets.all(20.0),
                  child: Column(
                    children: _simData.cards.map((SimCard card) {
                      return Container(
                        child: Center(
                          child: Column(
                            children: <Widget>[
                              Text(card.carrierName),
                              Text(card.displayName),
                              Text(card.countryCode),
                              Text(card.deviceId),
                              Text('data roaming is ${card.isDataRoaming}')
                            ],
                          ),
                        ),
                      );
                    }).toList(),
                  ),
                )
              ],
            )));
  }
}
3
likes
0
pub points
14%
popularity

Publisher

unverified uploader

A new flutter plugin project for getting sim data service *this plugin runs with android for now *.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on sim_service