0 purchases
djangoflow scrollable column
📜 Djangoflow Scrollable Column for Flutter 📜
A Flutter package that provides the `DjangoflowScrollableColumn` widget, allowing you to create a vertically scrollable column of widgets with ease.
🌟 Features #
Vertical Scrolling: Easily create scrollable columns with your choice of children widgets.
Customizable Layout: Control the alignment and layout of the column.
Flexibility: Use it as a part of your app's UI to display dynamic content.
📦 Installation #
To add djangoflow_scrollable_column to your Flutter project, add the following line to your pubspec.yaml:
dependencies:
djangoflow_scrollable_column: <latest_version>
copied to clipboard
Then, run:
flutter pub get
copied to clipboard
🚀 Quick Start #
🌅 Using DjangoflowScrollableColumn #
Simply import the package and use the DjangoflowScrollableColumn widget to create your scrollable column of widgets.
import 'package:djangoflow_scrollable_column/djangoflow_scrollable_column.dart';
DjangoflowScrollableColumn(
children: [
// Your widgets go here
],
)
copied to clipboard
🛠 Customization #
You can customize the layout and alignment of your scrollable column by providing optional parameters to DjangoflowScrollableColumn.
DjangoflowScrollableColumn(
children: [
// Your widgets go here
],
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
verticalDirection: VerticalDirection.up,
// Add more parameters as needed
)
copied to clipboard
📖 Example #
Check out the example directory for a sample application that demonstrates how to use DjangoflowScrollableColumn in your Flutter project.
🤝 Contributing #
We welcome contributions! Feel free to open an issue or submit a pull request if you have any improvements or find any bugs. You can find contribution guideline here
📜 License #
This project is licensed under the MIT License. See the LICENSE file for details.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.