FLUTTER ECOSYSTEM

rezam92/jumping_dot

점프하는 점 인디케이터

점프하는 점 프로젝트 이미지
Stars
6
Forks
3
최근 푸시(UTC)
2024. 6. 26.
프로젝트 상태
활성
Reza GitHub avatar
GITHUB User

Reza ↗

Mr. Reza

Runwidget (KBW)
언어DartHTMLSwiftKotlinObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 2 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

jumping_dot

Jumping Dot Indicator (null safety)

jumping dot

Usage Jumping Dot

To use this plugin, add jumping_dot as a dependency in your pubspec.yaml file.

Example usage :
class Example extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: JumpingDots(
          color: Colors.yellow,
          radius: 10,
          numberOfDots: 3,
          animationDuration = Duration(milliseconds: 200),
        ),
      ),
    );
  }
}
Parameter
Parameters Type Is Required Description
numberOfDots int No Number of dots
color Color No Color of dots
radius double No Animation duration in milliseconds
animationDuration Duration No animation duration in milliseconds
innerPadding double No Padding between dots
verticalOffset Defines how much the animation will offset negatively in the y axis. Can be either positive or negative, as it'll later be converted into its. negative value. Non-finite or zero (0) values are not accepted
delay int No The delay in milliseconds between animations

Getting Started flutter

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.