system_status 1.0.7 copy "system_status: ^1.0.7" to clipboard
system_status: ^1.0.7 copied to clipboard

PlatformmacOS

The system_status Plugin is a powerful and user-friendly tool designed to provide real-time statistics on RAM, battery, storage, and CPU usage for MacOS computers.

system_status #

Platform

system_status is a Flutter plugin that provides system status monitoring capabilities for MacOS computers. It allows you to monitor and display real-time statistics of RAM, battery, storage, and CPU usage.

Features #

  • Real-time monitoring of system resources: RAM, battery, storage, and CPU.
  • User-friendly interface for easy integration and usage.
  • Supports MacOS 10.14 and above.
  • Low system resource usage, optimized for performance monitoring without overhead.

Installation #

To use this plugin, add system_status as a dependency in your pubspec.yaml file.

dependencies:
  flutter:
    sdk: flutter
  system_status: ^1.0.7

Then, import the package where you need to use it:

import 'package:system_status/system_status.dart';

Usage #

// Initialize the plugin
SystemStatusMacOS systemStatus = SystemStatusMacOS();

// Get system status information
void getSystemStatus() async {
  try {
    SystemStatusModel? status = await systemStatus.getSystemStatus();
   
    print('System Status: ${status}');
  } catch (e) {
    print('Error retrieving system status: $e');
  }
}

Example App - SS

4
likes
160
pub points
48%
popularity

Publisher

verified publisherdevrasityilmaz.com

The system_status Plugin is a powerful and user-friendly tool designed to provide real-time statistics on RAM, battery, storage, and CPU usage for MacOS computers.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, system_status_macos, system_status_platform_interface

More

Packages that depend on system_status