A widget that displays a collection of dispersed and non-overlapping children

admin

A widget that displays a collection of dispersed and non-overlapping children.

flutter_scatter

A widget that displays a collection of dispersed and non-overlapping children.

Word Cloud

Can be used to create word clouds: 

Features

  • Built-in delegates (Spirals, Align, Ellipse).
  • Allow you to specify how to align chlidren.

Getting started

In the pubspec.yaml of your flutter project, add the following dependency: The latest version is

dependencies:   ...   flutter_scatter: ^latest_version

In your library add the following import:

import 'package:flutter_scatter/flutter_scatter.dart';

For help getting started with Flutter, view the online documentation.

Widgets

You can simply create a Scatter by providing a delegate and a list of widgets.

The delegate is responsible for computing positions. For example if you want to position your widgets on a circle, you will use the EllipseScatterDelegate:

return Center(     
child: Scatter(
delegate: EllipseScatterDelegate(
a: 185.0,
b: 185.0,
step: 1.0 / count,
),
children: widgets,
),
);
Ellipse

It may be useful to choose how children are aligned with the computed positions. By default, the center of the widgets will be placed on the positions generated by the delegate. If you want to be left aligned, you will change the alignmentargument of the Scatter to be Alignment.topLeft.

By default, the Scatter will not try to fill gaps (for performance reasons). You can override this behavior by setting the fillGaps argument to true.

fillGaps to false

For example this is what the above word cloud would look if the fillGaps argument would be set to false

Delegates

Scatter has built-in delegates which can be highly parameterized:

Spirals

  • ArchimedeanSpiralScatterDelegate
  • FermatSpiralScatterDelegate
  • LogarithmicSpiralScatterDelegate
Spirals

Alignments

  • AlignScatterDelegate
Alignments

Ellipses

  • EllipseScatterDelegate
Ellipses

Credit (github url) : https://github.com/letsar/flutter_scatter

Next Article : https://flutterappdev.com/2019/01/26/a-flutter-widget-to-enter-passcodes-mobile-app-development/

Leave a Comment