Flutter類似于電力輸送的動畫

利用flutter寫了個類似于充電的動畫,比如光伏板給電池充電,模仿電力輸送的過程壶运,效果如下圖所示

gif.gif

下面直接貼出代碼,屬性都標(biāo)注了注釋浪秘,使用的時候在外面加個盒子固定寬高蒋情,然后給出每個點的坐標(biāo),內(nèi)部會根據(jù)坐標(biāo)的點數(shù)來判斷有幾根線耸携,然后畫出線的路徑棵癣,進(jìn)行動畫模擬,可以根據(jù)項目需求來自定義點的顏色夺衍,每條路徑上點的個數(shù)以及點的大小等等狈谊,

import 'package:flutter/material.dart';

class ElectricAnimated extends StatelessWidget {
  final int duration; //動畫時長
  final List<Offset> path; //路徑的點坐標(biāo)
  const ElectricAnimated({
    super.key,
    this.duration = 5,
    required this.path,
  });

  @override
  Widget build(BuildContext context) {
    return Stack(
      children: List.generate(
        path.length - 1,
        (index) {
          return AnimatedDots(
            path: [
              path[index],
              path[index + 1],
            ],
            dotCount: 3,
            duration: Duration(
              seconds: duration,
            ),
          );
        },
      ),
    );
  }
}

class AnimatedDots extends StatefulWidget {
  final List<Offset> path; //路徑的點坐標(biāo)
  final int dotCount; //每條路徑上的點的個數(shù)
  final double dotSize; //點的大小
  final Duration duration;
  final Color dotColor; //點的顏色

  const AnimatedDots({
    Key? key,
    required this.path,
    this.dotCount = 5,
    this.dotSize = 2,
    this.duration = const Duration(seconds: 2),
    this.dotColor = Colors.white,
  }) : super(key: key);

  @override
  State<AnimatedDots> createState() => _AnimatedDotsState();
}

class _AnimatedDotsState extends State<AnimatedDots>
    with SingleTickerProviderStateMixin {
  late AnimationController _animationController;
  late Animation<double> _animation;
  int _currentIndex = 0;

  @override
  void initState() {
    super.initState();

    _animationController = AnimationController(
      vsync: this,
      duration: widget.duration,
    );

    _animation = Tween<double>(
      begin: 0,
      end: 1,
    ).animate(_animationController);

    _animationController.addStatusListener((status) {
      if (status == AnimationStatus.completed) {
        _currentIndex++;
        if (_currentIndex >= widget.path.length - 1) {
          _currentIndex = 0;
        }

        _animationController.reset();
        _animationController.forward();
      }
    });

    _animationController.forward();
  }

  @override
  void dispose() {
    _animationController.dispose();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return AnimatedBuilder(
      animation: _animation,
      builder: (context, child) {
        final value = _animation.value;
        final current = widget.path[_currentIndex];
        final next = widget.path[(_currentIndex + 1) % widget.path.length];

        final dots = List.generate(widget.dotCount, (index) {
          final dotValue = (value + index / widget.dotCount) % 1;
          final x = current.dx + (next.dx - current.dx) * dotValue;
          final y = current.dy + (next.dy - current.dy) * dotValue;

          return Positioned(
            left: x - widget.dotSize / 2,
            top: y - widget.dotSize / 2,
            child: Container(
              width: widget.dotSize,
              height: widget.dotSize,
              decoration: BoxDecoration(
                color: widget.dotColor,
                shape: BoxShape.circle,
              ),
            ),
          );
        });

        return Stack(
          children: dots,
        );
      },
    );
  }
}

使用

body: Center(
        child: Container(
          color: Colors.black,
          width: 150,
          height: 150,
          child: const ElectricAnimated(
            duration: 3,
            path: [
              Offset(30, 0),
              Offset(30, 67),
              Offset(90, 67),
              Offset(90, 137),
            ],
          ),
        ),
      ),

CSDN地址

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市沟沙,隨后出現(xiàn)的幾起案子河劝,更是在濱河造成了極大的恐慌,老刑警劉巖矛紫,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件赎瞎,死亡現(xiàn)場離奇詭異,居然都是意外死亡颊咬,警方通過查閱死者的電腦和手機(jī)务甥,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來喳篇,“玉大人缓呛,你說我怎么就攤上這事『枷叮” “怎么了?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵因妙,是天一觀的道長痰憎。 經(jīng)常有香客問我票髓,道長,這世上最難降的妖魔是什么铣耘? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任洽沟,我火速辦了婚禮,結(jié)果婚禮上蜗细,老公的妹妹穿的比我還像新娘裆操。我一直安慰自己,他們只是感情好炉媒,可當(dāng)我...
    茶點故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布踪区。 她就那樣靜靜地躺著,像睡著了一般吊骤。 火紅的嫁衣襯著肌膚如雪缎岗。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天白粉,我揣著相機(jī)與錄音传泊,去河邊找鬼。 笑死鸭巴,一個胖子當(dāng)著我的面吹牛眷细,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播鹃祖,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼溪椎,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了惯豆?” 一聲冷哼從身側(cè)響起池磁,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎楷兽,沒想到半個月后地熄,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡芯杀,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年端考,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片揭厚。...
    茶點故事閱讀 38,100評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡却特,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出筛圆,到底是詐尸還是另有隱情裂明,我是刑警寧澤,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布太援,位于F島的核電站闽晦,受9級特大地震影響扳碍,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜仙蛉,卻給世界環(huán)境...
    茶點故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一笋敞、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧荠瘪,春花似錦夯巷、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至麸祷,卻和暖如春澎怒,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背阶牍。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工喷面, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人走孽。 一個月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓惧辈,卻偏偏與公主長得像,于是被迫代替她去往敵國和親磕瓷。 傳聞我的和親對象是個殘疾皇子盒齿,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容