custom_scaffold_plus 0.0.4 copy "custom_scaffold_plus: ^0.0.4" to clipboard
custom_scaffold_plus: ^0.0.4 copied to clipboard

A powerful, flexible, and production-ready alternative to Flutter's native Scaffold with features like scrollable content, background images, and more.

🧱 custom_scaffold_plus #

A powerful, flexible, and production-ready alternative to Flutter's native Scaffold.
custom_scaffold_plus provides features like scrollable content with pull-to-refresh, light/dark mode background images, keyboard unfocus gesture, drawer support, bottom navigation, floating action buttons, and more — all in one place.


✨ Features #

  • 🎨 Light & Dark mode background image support
  • 🔄 Optional scrollable body with pull-to-refresh
  • 🎯 Keyboard dismiss on outside tap
  • 🧭 Padding, AppBar, FAB, Drawer, BottomNav
  • 📱 Responsive and extendable layout
  • 🔧 Custom FAB positioning & inset behavior
  • 📦 Easy to drop in your existing projects

✨ Example #

import 'package:custom_scaffold_plus/custom_scaffold_plus.dart';

// Basic usage
CustomScaffoldPlust(
  child: Center(
    child: Text('Hello World!'),
  ),
)

// With background image
CustomScaffoldPlust(
  isDark: true, // Use dark mode background
  darkBackgroundAsset: 'assets/bg_dark.jpg',
  lightBackgroundAsset: 'assets/bg_light.jpg',
  child: Center(
    child: Text('Hello with background!'),
  ),
)

// With scrolling and refresh
CustomScaffoldPlust(
  scrolling: true,
  onRefresh: () {
    // Handle refresh
    print('Refreshing...');
  },
  child: Column(
    children: [
      // Your scrollable content
    ],
  ),
)

🚀 Getting Started #

Add the dependency to your pubspec.yaml:

dependencies:
  custom_scaffold_plus: ^0.0.2
3
likes
0
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

A powerful, flexible, and production-ready alternative to Flutter's native Scaffold with features like scrollable content, background images, and more.

Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (license)

Dependencies

flutter

More

Packages that depend on custom_scaffold_plus