circle_list 0.1.2 copy "circle_list: ^0.1.2" to clipboard
circle_list: ^0.1.2 copied to clipboard

outdated

A new Flutter package for circle list.

circle_list #

A new Flutter package for Circle List.

Add dependency #

dependencies:
  circle_list: ^0.1.2

Super simple to use #

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

class ShowDemoPage extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(backgroundColor: Colors.white,),
      body: Center(
        child: CircleList(
          origin: Offset(0, 0),
          children: List.generate(10, (index) {
            return Icon(
              Icons.details,
              color: index % 2 == 0 ? Colors.blue : Colors.orange,
            );
          }),
        ),
      ),
    );
  }
}

image

If you want to add gradient background #

CircleList(
          gradient: LinearGradient(
            colors: [Colors.redAccent, Colors.blueAccent],
          ),
          origin: Offset(0, 0),
          children: List.generate(10, (index) {
            return Icon(
              Icons.details,
              color: index % 2 == 0 ? Colors.blue : Colors.orange,
            );
          }),
        ),

image

Another background #

CircleList(
          innerCircleColor: Colors.redAccent,
          outerCircleColor: Colors.greenAccent,
          origin: Offset(0, 0),
          children: List.generate(10, (index) {
            return Icon(
              Icons.details,
              color: index % 2 == 0 ? Colors.blue : Colors.orange,
            );
          }),
        )

image

CenterWidget #

CircleList(
          origin: Offset(0, 0),
          children: List.generate(10, (index) {
            return Icon(
              Icons.details,
              color: index % 2 == 0 ? Colors.blue : Colors.orange,
            );
          }),
          centerWidget: ClipRRect(
              borderRadius: BorderRadius.all(Radius.circular(100)),
              child: Image.asset("images/avator.jpg")),
        ),

image

Demo #

image

The Demo Link

Params #

  • double innerRadius;
  • double outerRadius;
  • double childrenPadding:
  • double initialAngle;
  • Color outerCircleColor;
  • Color innerCircleColor;
  • Gradient gradient;
  • Offset origin;
  • List
  • bool isChildrenVertical;
  • bool outerCircleRotateWithChildren;
  • bool innerCircleRotateWithChildren;
  • bool showInitialAnimation;
  • Widget centerWidget;
  • RadialDragStart onDragStart;
  • RadialDragUpdate onDragUpdate;
  • RadialDragEnd onDragEnd;
  • AnimationSetting animationSetting;
84
likes
0
pub points
88%
popularity

Publisher

unverified uploader

A new Flutter package for circle list.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on circle_list