storage_details 0.0.4 copy "storage_details: ^0.0.4" to clipboard
storage_details: ^0.0.4 copied to clipboard

PlatformAndroid

To get details about Internal storage, sd card And otg devices. It provides storage path, used, free and total space.

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:storage_details/storage_details.dart';
import 'package:storage_details_example/page_view.dart';

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

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

class _MyAppState extends State<MyApp> {
  List<Storage> data = [];

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    final _data = await StorageDetails.getspace;
    data = _data;
    if (!mounted) return;
    setState(() {});
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: MyPageView(),
      ),
    );
  }
}
3
likes
150
points
39
downloads

Publisher

unverified uploader

Weekly Downloads

To get details about Internal storage, sd card And otg devices. It provides storage path, used, free and total space.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on storage_details