library_helper 0.0.6 copy "library_helper: ^0.0.6" to clipboard
library_helper: ^0.0.6 copied to clipboard

library_helper

arb_core_helpers #

Core helper utilities, network controllers, and custom UI components for ARB applications.

Features #

  • API Controller: A robust Dio-based API controller with built-in token management and error handling.
  • Device Service: Utilities to fetch device info, push notification tokens, location, and IP address.
  • Custom UI: Customizable AppBars, Texts, and other UI elements for standardizing app designs.
  • Crypto Helper: Helpful cryptographic utilities.

Getting started #

Include arb_core_helpers in your pubspec.yaml under dependencies.

Usage #

import 'package:arb_core_helpers/arb_core_helpers.dart';

void main() async {
  // Example usage of DeviceService
  final deviceInfo = await DeviceService.getDeviceInfo();
  print(deviceInfo);
}

Additional information #

For more information, please check the source repository on GitHub.