FLUTTER ECOSYSTEM

alpceylan/flutter-countup

Flutter용 기본 카운터 위젯입니다.

flutter-countup 프로젝트 이미지
Stars
15
Forks
22
최근 푸시(UTC)
2022. 8. 22.
프로젝트 상태
활성
Alp Ceylan GitHub avatar
GITHUB User

Alp Ceylan ↗

Antalya, Turkey
언어Dart

이 저장소가 배포한 패키지

사용 중인 의존성

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

원본 README

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

README 펼치기 / 접기

pub package License: MIT

Flutter Countup

A Flutter package that helps you create animated Text widgets for Android and IOS. Based by https://gitlab.com/kmcgill88/mccounting_text

Simple Usage

You should give a begin, end and a duration value to Countup widget. If you want you can also give separator and style value.

Countup(
  begin: 0,
  end: 7500,
  duration: Duration(seconds: 3),
  separator: ',',
  style: TextStyle(
    fontSize: 36,
  ),
)

'flutter-countup-basic'

Props
begin: double
end: double
separator: String
duration: Duration
style: TextStyle
prefix: String
suffix: String
precision: int
curve: Curve
textAlign: TextAlign
textDirection: TextDirection
locale: Locale
softWrap: bool
overflow: TextOverflow
textScaleFactor: double
maxLines: int
semanticsLabel: String