flutter_background_wraper 1.0.2
flutter_background_wraper: ^1.0.2 copied to clipboard
A customizable background layout widget with loading, error, and refresh handling.
flutter_background_wraper #
A customizable Flutter widget that wraps your screen with built-in support for:
- AppBar with title/back button
- Scrollable/non-scrollable content
- Error view with retry
- Loading state
- Pull-to-refresh
🚀 Usage #
AppBackground(
title: 'Home',
isLoading: false,
isError: false,
isRefresh: true,
onRefresh: () async {},
child: Text('Hello World'),
);