kib_flutter_utils 1.0.106 copy "kib_flutter_utils: ^1.0.106" to clipboard
kib_flutter_utils: ^1.0.106 copied to clipboard

A curated collection of reusable Flutter utilities and helper widgets designed to streamline mobile app development. Ideal for developers aiming to build scalable and maintainable Flutter applications [...]

Kib Flutter Utils #

A collection of Flutter utility classes and functions to simplify common tasks in Flutter development.

Features #

  • Error handling utilities with custom exception types
  • Snackbar utilities for quick feedback
  • Widget utilities for common UI patterns
  • General utility functions

Installation #

dependencies:
  kib_flutter_utils: ^1.0.0

Usage #

Error Handling #

import 'package:kib_flutter_utils/kib_flutter_utils.dart';

try {
  // Some API call
  final response = await apiClient.fetchData();
  if (response.statusCode == 404) {
    throw NotFoundException('User profile not found');
  }
} catch (e, stackTrace) {
  throw ExceptionX(
    message: 'Failed to fetch user data',
    errorType: e.runtimeType,
    error: e,
    stackTrace: stackTrace,
  );
}
1
likes
150
points
25
downloads

Documentation

Documentation
API reference

Publisher

unverified uploader

Weekly Downloads

A curated collection of reusable Flutter utilities and helper widgets designed to streamline mobile app development. Ideal for developers aiming to build scalable and maintainable Flutter applications with less repetitive code.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

equatable, flutter, kib_debug_print, kib_utils, provider

More

Packages that depend on kib_flutter_utils