FLUTTER ECOSYSTEM

lewiseman/circular_motion

一个用于在限定区域内创建圆形列表/运动滚动效果的 Flutter 包。

圆形运动 项目封面
Stars
7
Forks
0
最近推送(UTC)
2023年12月29日
项目状态
未归档
lewiseman GitHub avatar
GITHUB User

lewiseman ↗

语言C++CMakeDartHTMLCSwiftKotlinObjective-C

此仓库发布的插件

使用的依赖

依赖清单 3 项
  • flutter{"sdk":"flutter"}
  • flutter_test开发依赖{"sdk":"flutter"}
  • flutter_lints开发依赖^3.0.1

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

Circular Motion

easy dashboard

This package provides a way to create widgets in a circular position and able to scroll and make them rotate.

Any Shape Any Position Customizable
https://raw.githubusercontent.com/lewiseman/assets/master/circular_motion_1.png https://raw.githubusercontent.com/lewiseman/assets/master/circular_motion_2.png https://raw.githubusercontent.com/lewiseman/assets/master/circular_motion_3.png
https://raw.githubusercontent.com/lewiseman/assets/master/circular_motion_vd_1.gif https://raw.githubusercontent.com/lewiseman/assets/master/circular_motion_vd_2.gif https://raw.githubusercontent.com/lewiseman/assets/master/circular_motion_vd_3.gif

The shape of cirlcle will be dependent on the parent widget.

Usage

API

centerWidget

The centerWidget is the widget that will be in the center of the circular motion.

centerWidget: Text('Center'),

behavior

The behavior is used to control how the gesture should behave during interaction .

behavior: HitTestBehavior.translucent,

speedRunEnabled

The speedRunEnabled is used to determine if after a scroll gesture is completed , the items should rotate in a velocity similar to the gesture . If false the items will not rotate after the gesture is completed . It defaults to true .

speedRunEnabled: true,

You can create the circular motion in the following ways:
CircularMotion

Example:

CircularMotion(
    centerWidget: Text('Center'),
    children: [
     Text('0'),
     Text('1'),
     Text('2'),
     Text('3'),
  ],
)
CircularMotion.builder()

Example

CircularMotion.builder(
    itemCount: 18,
    centerWidget: Text('Center'),
    builder: (context, index) {
      return Text('$index');
    }
)

Issues and Feedback

Please feel free to report any issues you face
Also PR's and additional feedback is appreciated

Enjoy 💫