Features

ring_layout is a ui component that helps you build ring layouts.

Support Android and iOS platforms

Getting started

Run this command:

With Flutter:

 $ flutter pub add ring_layout

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dependencies:
  ring_layout: ^1.0.1

Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

Usage

RingLayout(
  initAngle: _controller.value * 360,
  children: List.generate(
    9,
    (index) =>
        buildPoint(width: 80, height: 80, color: Colors.blue),
  ),
);

Getting Started

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

For help on editing plugin code, view the documentation.

Libraries

ring_layout