plugin_volume_info 0.0.5
plugin_volume_info: ^0.0.5 copied to clipboard
A plugin to analyse the volumes of an android device. It includes used, free and total space and also some useful device information like device name, android version. It can also handle copying large files.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:plugin_volume_info_example/routes/routes.dart';
class ExampleApp extends StatelessWidget {
const ExampleApp({super.key});
@override
Widget build(BuildContext context) {
return GetMaterialApp(
title: "Example application",
initialRoute: PageRoutes.initial,
getPages: PageRoutes.routes,
);
}
}
void main() {
runApp(const ExampleApp());
}