gap 3.0.1 copy "gap: ^3.0.1" to clipboard
gap: ^3.0.1 copied to clipboard

Flutter widgets for easily adding gaps inside Flex widgets such as Columns and Rows or scrolling views.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:gap/gap.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({
    super.key,
  });

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Gap Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(),
    );
  }
}

/// A widget.
class HomePage extends StatelessWidget {
  /// Creates a [HomePage].
  const HomePage({
   super.key,
  });

  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body: SafeArea(
        child: Column(
          children: <Widget>[
             Gap.expand(20, color: Colors.red),
             Gap(80),
             Gap.expand(20, color: Colors.red),
             MaxGap(2000),
             Gap.expand(20, color: Colors.red),
            Row(
              children:  <Widget>[
                Gap(20, color: Colors.green, crossAxisExtent: 20),
                Gap(50),
                Gap(20, color: Colors.green, crossAxisExtent: 20),
              ],
            ),
             Gap.expand(200, color: Colors.blue),
          ],
        ),
      ),
    );
  }
}
685
likes
140
pub points
99%
popularity

Publisher

unverified uploader

Flutter widgets for easily adding gaps inside Flex widgets such as Columns and Rows or scrolling views.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on gap