data_handler 0.0.4
data_handler: ^0.0.4 copied to clipboard
Refactored architecture with enhanced global configuration for state management and data handling in Flutter applications. This package provides a robust solution for managing API states, including lo [...]
DataHandler πβ¨π¦ #
Effortless State Management for API Responses in Flutter Apps! π―π±β‘
DataHandler
is a lightweight and efficient state management utility designed to handle API responses seamlessly across all Flutter platforms (Android, iOS, Web, Windows, macOS, and Linux). It simplifies state handling, including loading, success, error, and empty states, ensuring a smooth UI experience with performance optimization and global configuration. ππ
π Features #
β
Universal Compatibility β Works across all platforms!
β
Smart State Management β Loading, Success, Error, and Empty states with enum-based tracking
β
Performance Optimized β Only rebuilds when state actually changes
β
Global Widget Configuration β Set app-wide defaults for consistent UI
β
Sliver Support β Perfect integration with CustomScrollView
β
List Enhancement β Specialized handling for list data with empty detection
β
Works with Any Data Type (T
) β Highly versatile and reusable
β
Modern Architecture β Built with latest Flutter best practices
β
Minimal Setup, Maximum Productivity β Get started in seconds!
π₯ Installation #
Add DataHandler
to your pubspec.yaml
:
dependencies:
data_handler: ^0.0.4 # Use the latest version
Then, run:
flutter pub get
π Quick Start #
1οΈβ£ Import the Package #
import 'package:data_handler/data_handler.dart';
2οΈβ£ Initialize DataHandler #
final DataHandler<String> handler = DataHandler<String>();
// Or with initial data
final DataHandler<List<User>> users = DataHandler<List<User>>(initialUserList);
3οΈβ£ Manage API States #
π Loading State
handler.startLoading();
β Success State
handler.onSuccess("Data loaded successfully");
β Error State
handler.onError("Something went wrong");
π Empty State
handler.onEmpty("No data available");
π Convenient Refresh
await handler.refresh(() => apiService.fetchData());
π₯οΈ UI Integration #
π Handle Different States Dynamically #
Widget build(BuildContext context) {
return handler.when(
onLoading: () => const CircularProgressIndicator(),
onSuccess: (data) => Text(data),
onError: (error) => Text("Error: $error", style: TextStyle(color: Colors.red)),
onEmpty: (message) => Text("No Data: $message"),
);
}
π List Handling (Perfect for API Lists) #
Widget build(BuildContext context) {
return userHandler.whenList(
onSuccess: (users) => ListView.builder(
itemCount: users.length,
itemBuilder: (context, index) => UserTile(users[index]),
),
onLoading: () => const Center(child: CircularProgressIndicator()),
onError: (error) => ErrorWidget(error),
onEmptyList: (message) => const EmptyUsersWidget(),
);
}
π’ Sliver Support for CustomScrollView #
Widget build(BuildContext context) {
return CustomScrollView(
slivers: [
const SliverAppBar(title: Text('Users')),
userHandler.whenSliverList(
itemBuilder: (users, index) => UserTile(users[index]),
itemCount: (users) => users.length,
onLoading: () => const LoadingWidget(),
onError: (error) => ErrorWidget(error),
onEmpty: (message) => const EmptyWidget(),
),
],
);
}
π Global Configuration #
Set app-wide defaults for consistent UI across your entire application:
void main() {
// Configure global widgets once
DataHandlerConfig.setGlobalWidgets(
loadingWidget: () => const CustomLoadingSpinner(),
errorWidget: (error) => CustomErrorWidget(error),
emptyWidget: (message) => CustomEmptyWidget(message),
);
runApp(MyApp());
}
new_break_changes_v_0.0.4
Now all your DataHandler
instances will automatically use these widgets when local ones aren't provided! #
App Preview #
Web Preview #
main
π Advanced Usage #
π State Checking #
if (handler.isLoading) {
// Show loading indicator
}
if (handler.hasSuccess) {
// Data is available and valid
print('Data: ${handler.data}');
}
if (handler.hasError) {
// Handle error case
print('Error: ${handler.errorMessage}');
}
π List-Specific Properties #
DataHandler<List<String>> listHandler = DataHandler();
// Check list state
print('Is empty: ${listHandler.isListEmpty}');
print('Length: ${listHandler.listLength}');
π Direct Data Updates #
// Update data without loading state (for real-time updates)
handler.updateData(newData);
// Clear all data and reset to empty
handler.clear();
π― Performance Optimization #
// Disable automatic state handling when needed
handler.when(
enabled: false, // Always shows success widget if data exists
onSuccess: (data) => SuccessWidget(data),
// ... other callbacks
);
// Control global widget fallback
handler.when(
useGlobalWidgets: false, // Only use local widgets
onSuccess: (data) => SuccessWidget(data),
// ... other callbacks
);
π Cross-Platform Compatibility #
DataHandler
is fully optimized for Flutter's multi-platform capabilities, ensuring smooth performance on:
Platform | Status |
---|---|
π± Android | β |
π iOS | β |
π₯οΈ Web | β |
π’ Windows | β |
π macOS | β |
π§ Linux | β |
π Migration from v0.0.3 #
If you're upgrading from v0.0.3, here's what changed:
// OLD (v0.0.3)
handler.when(
context: context,
loadingBuilder: (context) => Loading(),
successBuilder: (data) => Success(data),
errorWidget: ErrorWidget(),
)
// NEW (v0.0.4)
handler.when(
onLoading: () => Loading(),
onSuccess: (data) => Success(data),
onError: (error) => ErrorWidget(error),
)
Key Changes:
- Removed
context
parameter - Changed builder names (
loadingBuilder
βonLoading
) - Replaced widget properties with callbacks
- Added global configuration system
π€ Contributing #
We love contributions! π
Feel free to open issues, discuss features, or submit pull requests to enhance DataHandler
. Let's build something amazing together! π οΈβ¨
π License #
This package is released under the MIT License. π
Enjoying DataHandler? Give it a β on GitHub and help others discover it! ππ
Made with β€οΈ for the Flutter community