cubit_base
एक हल्का फ्लटर लाइब्रेरी जो ब्लॉक/क्यूबिट के उपयोग से डेटा लेने और पृष्ठांतरण को सरल बनाती है। यह मानकीकृत अवस्थाएं और एक Fetcher उपकरण प्रदान करती है जो बॉयलरप्लेट को कम करती है।
आसान फ़ैच के साथ क्यूबिट को नियंत्रित करें
{"sdk":"flutter"}{"sdk":"flutter"}^5.0.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
A lightweight Flutter library to simplify data fetching and pagination using Bloc/Cubit. It provides standardized states and a Fetcher utility to reduce boilerplate in your Clean Architecture features.
BaseState and BasePaginationState for consistent UI handling.Fetcher.fetchWithBase handles loading, success, and error states automatically.Fetcher.fetchWithPaginate manages page increments and "reached max" logic.Add cubit_base to your pubspec.yaml:
dependencies:
cubit_base: ^0.0.5
Define your state using BaseState:
class UserState {
final BaseState<User> user;
UserState({required this.user});
UserState copyWith({BaseState<User>? user}) => UserState(user: user ?? this.user);
}
Use the Fetcher in your Cubit:
Future<void> getUser() async {
await Fetcher.fetchWithBase<User>(
fetcher: () => _getUserUseCase.call(),
state: state.user,
emitter: (newState) => emit(state.copyWith(user: newState)),
);
}
Define your state using BasePaginationState:
class ProductState {
final BasePaginationState<Product> products;
ProductState({required this.products});
ProductState copyWith({BasePaginationState<Product>? products}) =>
ProductState(products: products ?? this.products);
}
Implement pagination in your Cubit:
Future<void> getProducts({bool isRefresh = false}) async {
await Fetcher.fetchWithPaginate<Product>(
fetcher: () => _getProductsUseCase.call(
params: ProductParams(
page: isRefresh ? 1 : state.products.query.page,
size: state.products.query.size,
),
),
state: state.products,
isRefresh: isRefresh,
emitter: (newState) => emit(state.copyWith(products: newState)),
);
}
BaseState<T>Manages a single object of type T.
status: initial, loading, success, error.data: The fetched object.error: Error message if any.BasePaginationState<T>Manages a list of type T.
list: List of items.status: initial, loading, paging, success, error.query: Contains page and size.reachedMax: Boolean indicating if all data is loaded.This project is licensed under the MIT License - see the LICENSE file for details.