gap icon indicating copy to clipboard operation
gap copied to clipboard

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

Results 18 gap issues
Sort by recently updated
recently updated
newest added

Hi Romain, I've added an AnimatedGap and SliverAnimatedGap so that we can transition smoothly between extent values, can be useful since we see more and more Flutter apps running on...

Hi, here are the CI checks for pull requests and branches. Note: test on flutter stable channel will break on nullsafety branch. I will prepare another PR to address this.

Is there something we can do to use `Gap` inside `Wrap` widget? ``` Wrap( direction: Axis.horizontal, crossAxisAlignment: WrapCrossAlignment.center, children: [ Text( 'Message', style: Get.textTheme.labelMedium!.copyWith(color: Colors.black.withOpacity(0.5)), maxLines: 1, overflow: TextOverflow.ellipsis, ),...

This is not working it adds only vertical space ``` dart OverflowBar( children: const [ Text('foo'), Gap(8), Text('bar'), ] } ```

This adds a gap extension to make it easier to evenly space Rows and Columns ```dart return Row( children: [ Icon(Icons.abc), Icon(Icons.air), Icon(Icons.add), ].gap(10), ); ```

final TapRegionCallback? onTapOutside;

Add flex parameter to MaxGap to let user set up custom flex value. See issue #17

It would be very useful to add a `flex` parameter to `MaxGap`. Sometimes it's necessary to combine several `MaxGap`s in one `Column`/`Row`. In this case they will be sharing flex...

I built the following package that is bscly a shittier version of `Gap`, except that it also provides `Gap` style classes that automatically size themselves according to `adaptive_breakpoints` so you...

I have a compilation error with version 2.0.2 of gap. ```../../.pub-cache/hosted/pub.dartlang.org/gap-2.0.2/lib/src/widgets/gap.dart:74:40: Error: Member not found: 'Scrollable.maybeOf'. final scrollableState = Scrollable.maybeOf(context); ^^^^^^^ Error: Compilation failed. ``` The method Scrollable.maybeOf only exist...