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:

  1. Make sure you have Flutter installed on your machine.
  2. Add the Flutter Gap dependency to your pubspec.yaml file:
dependencies:
  flutter_gap: ^1.0.0
  1. Import the package in your Dart file:
import 'package:flutter_gap/flutter_gap.dart';
  1. 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
  1. This package provide a helper widget to build layouts called Section
Section(
  padding: EdgeInsets.all(8.0),
  children: [
    // .. .. ..
  ],
),

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!

Libraries

flutter_gap