jfullinfo 0.5.1 copy "jfullinfo: ^0.5.1" to clipboard
jfullinfo: ^0.5.1 copied to clipboard

PlatformAndroid

Just An Amazing Full Hardware, System, SIM Cards & Application Information Plugin For Android Devices.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:jfullinfo/jFullInfo.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 _state = 'Unknown';
  final _jFullInfo = JFullInfo();

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('JInfoPlugin Example'),
        ),
        body: Padding(
          padding: const EdgeInsets.all(8.0),
          child: Center(
            child: Text(_state),
          ),
        ),
        floatingActionButton: Column(
          mainAxisAlignment: MainAxisAlignment.end,
          children: [
            FloatingActionButton(
              child: const Icon(Icons.android),
              onPressed: () async {
                final val = await _jFullInfo.getAndroidInformation();
                debugPrint(val.toString());
                setState(() {
                  _state = val.toString();
                });
              },
            ),
            FloatingActionButton(
              child: const Icon(Icons.device_unknown),
              onPressed: () async {
                final val = await _jFullInfo.getHardwareInformation();
                debugPrint(val.toString());
                setState(() {
                  _state = val.toString();
                });
              },
            ),
            FloatingActionButton(
              child: const Icon(Icons.sim_card),
              onPressed: () async {
                final val = await _jFullInfo.getSimInformation();
                for (var i in val) {
                  debugPrint(i.toString());
                }
                setState(() {
                  _state = val.first.toString();
                });
              },
            ),
            FloatingActionButton(
              child: const Icon(Icons.app_shortcut),
              onPressed: () async {
                final val = await _jFullInfo.getApplicationInformation();
                debugPrint(val.toString());
                setState(() {
                  _state = val.toString();
                });
              },
            ),
            FloatingActionButton(
              child: const Icon(Icons.all_inclusive),
              onPressed: () async {
                final val = await _jFullInfo.getAllInformation();
                debugPrint(val.toString());
                setState(() {
                  _state = val.toString();
                });
              },
            ),
          ],
        ),
      ),
    );
  }
}
8
likes
150
pub points
53%
popularity

Publisher

verified publisherjucodes.com

Just An Amazing Full Hardware, System, SIM Cards & Application Information Plugin For Android Devices.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on jfullinfo