essential_flutter 1.0.0
essential_flutter: ^1.0.0 copied to clipboard
Flutter widgets, components, and services building on essential_dart for accelerated UI development.
essential_flutter #
Flutter widgets, components, and services building on essential_dart for accelerated UI development.
Features #
- Widgets: Reusable UI components.
- Services: Flutter-specific services.
- Architecture: Patterns for clean Flutter architecture.
- ConditionalWrapper: Conditionally wrap widgets without nested ternaries.
- Integration: Seamlessly integrates with
essential_dart.
Getting started #
Add this to your package's pubspec.yaml file:
dependencies:
essential_flutter: ^1.0.0
Usage #
import 'package:essential_flutter/essential_flutter.dart';
// Conditionally wrap a widget
ConditionalWrapper(
condition: isScrollable,
wrapper: (child) => SingleChildScrollView(child: child),
child: MyContent(),
)