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

A Flutter plugin that provides total and free RAM memory information for Android and iOS devices.

📱 RAM Info Plugin for Flutter #

ram_info is a Flutter plugin that provides information about the device's RAM usage, including total RAM and free RAM, for both Android and iOS.


✨ Features #

  • ✅ Get total RAM (in MB)
  • ✅ Get available (free) RAM (in MB)
  • ✅ Cross-platform support: Android & iOS
  • ❌ Web/Desktop not supported

📦 Installation #

Add to your Flutter project #

If using as a local plugin, add this to your app's pubspec.yaml:

dependencies:
  ram_info:

📦 Usage #

void getRamInfo() async {
  final memoryInfo = await RamInfo.getMemoryDetails();
  print('Total RAM: ${memoryInfo.totalMB} MB');
  print('Free RAM: ${memoryInfo.freeMB} MB');
}
3
likes
140
points
187
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that provides total and free RAM memory information for Android and iOS devices.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, plugin_platform_interface, web

More

Packages that depend on ram_info

Packages that implement ram_info