Last updated:
0 purchases
flutter gap
Flutter Gap #
Flutter Gap is an ultra-simple package that provides a space widget to make code in Flutter easier and more readable.
Usage #
To use this package, follow these steps:
Make sure you have Flutter installed on your machine.
Add the Flutter Gap dependency to your pubspec.yaml file:
dependencies:
flutter_gap: ^1.0.0
copied to clipboard
Import the package in your Dart file:
import 'package:flutter_gap/flutter_gap.dart';
copied to clipboard
Use the Gap widget in your code:
Gap(16.0).row, // Horizontal gap of 16.0 points
Gap(16.0).column, // Vertical gap of 16.0 points
copied to clipboard
This package provide a helper widget to build layouts called [Section]
Section(
padding: EdgeInsets.all(8.0),
children: [
// .. .. ..
],
),
copied to clipboard
Contributions #
Contributions are welcome! If you find any bugs, have any improvement ideas, or want to add new features, please open an issue or submit a pull request.
License #
This package is licensed under the MIT License. See the LICENSE file for more details.
Thank you for using Flutter Gap! We hope it helps you in your Flutter projects.
Remember to customize the README file with specific details about your package, such as the current version, the repository link, and any other relevant information. Good luck with your Flutter package!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.