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
130
pub points
52%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on storage_details