下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
【移動(dòng)應(yīng)用開發(fā)技術(shù)】如何使用Flutter實(shí)現(xiàn)動(dòng)畫效果
本篇文章為大家展示了如何使用Flutter實(shí)現(xiàn)動(dòng)畫效果,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。class
Bar
{
Bar(this.height,
this.color);
final
double
height;
final
Color
color;
static
Bar
lerp(Bar
begin,
Bar
end,
double
t)
{
return
new
Bar(
lerpDouble(begin.height,
end.height,
t),
Color.lerp(begin.color,
end.color,
t)
);
}
}要在我們的應(yīng)用程序中使用彩色條形,需要更新BarChartPainter以從Bar獲取條形顏色。class
BarChartPainter
extends
CustomPainter
{
//
...
@override
void
paint(Canvas
canvas,
Size
size)
{
final
bar
=
animation.value;
final
paint
=
new
Paint()
//
從Bar獲取條形顏色
..color
=
bar.color
..style
=
PaintingStyle.fill;
//
...
//
...
}在main.dart同級(jí)目錄下新建color_palette.dart文件,用于獲取顏色。import
'package:flutter/material.dart';
import
'dart:math';
class
ColorPalette
{
static
final
ColorPalette
primary
=
new
ColorPalette(<Color>[
Colors.blue[400],
Colors.red[400],
Colors.green[400],
Colors.yellow[400],
Colors.purple[400],
Colors.orange[400],
Colors.teal[400],
]);
ColorPalette(List<Color>
colors)
:
_colors
=
colors
{
//
bool
isNotEmpty:如果此集合中至少有一個(gè)元素,則返回true
assert(colors.isNotEmpty);
}
final
List<Color>
_colors;
Color
operator
[](int
index)
=>
_colors[index
%
length];
//
返回集合中的元素?cái)?shù)量
int
get
length
=>
_colors.length;
/*
int
nextInt(
int
max
)
生成一個(gè)非負(fù)隨機(jī)整數(shù),范圍從0到max(包括max)
*/
Color
random(Random
random)
=>
this[random.nextInt(length)];
}我們將把Bar.empty和Bar.random工廠構(gòu)造函數(shù)放在Bar上。class
Bar
{
Bar(this.height,
this.color);
final
double
height;
final
Color
color;
factory
Bar.empty()
=>
new
Bar(0.0,
Colors.transparent);
factory
Bar.random(Random
random)
{
return
new
Bar(
random.nextDouble()
*
100.0,
ColorPalette.primary.random(random)
);
}
static
Bar
lerp(Bar
begin,
Bar
end,
double
t)
{
return
new
Bar(
lerpDouble(begin.height,
end.height,
t),
Color.lerp(begin.color,
end.color,
t)
);
}
}在main.dart中,我們需要?jiǎng)?chuàng)建一個(gè)空的Bar和一個(gè)隨機(jī)的Bar。我們將為前者使用完全透明的顏色,后者將使用隨機(jī)顏色。class
_MyHomePageState
extends
State<MyHomePage>
with
TickerProviderStateMixin
{
//
...
@override
void
initState()
{
//
...
tween
=
new
BarTween(new
Bar.empty(),
new
Bar.random(random));
animation.forward();
}
//
...
void
changeData()
{
setState(()
{
tween
=
new
BarTween(
tween.ev
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五年金融服務(wù)采購合同創(chuàng)新金融產(chǎn)品合作協(xié)議2篇
- 導(dǎo)演與發(fā)行方2025年度合同3篇
- 二零二五年度餐飲泔水處理與環(huán)保設(shè)施運(yùn)營管理合同6篇
- 二零二五年度高校畢業(yè)生就業(yè)見習(xí)實(shí)踐基地建設(shè)合作合同3篇
- 二零二五年度航空航天設(shè)備維修承包合同樣本3篇
- 二零二五年高性能混凝土委托加工合同范本3篇
- 碎石買賣合同(二零二五年度)2篇
- 二零二五年度藥品質(zhì)量第三方檢測(cè)合同范本6篇
- 二零二五版國際貿(mào)易中貨物所有權(quán)轉(zhuǎn)移與國際貿(mào)易政策研究合同3篇
- 2025年度電力設(shè)施租賃合同標(biāo)的轉(zhuǎn)讓協(xié)議3篇
- 課題申報(bào)書:大中小學(xué)鑄牢中華民族共同體意識(shí)教育一體化研究
- 巖土工程勘察課件0巖土工程勘察
- 《腎上腺腫瘤》課件
- 2024-2030年中國典當(dāng)行業(yè)發(fā)展前景預(yù)測(cè)及融資策略分析報(bào)告
- 《乘用車越野性能主觀評(píng)價(jià)方法》
- 幼師個(gè)人成長發(fā)展規(guī)劃
- 2024-2025學(xué)年北師大版高二上學(xué)期期末英語試題及解答參考
- 批發(fā)面包采購合同范本
- 乘風(fēng)化麟 蛇我其誰 2025XX集團(tuán)年終總結(jié)暨頒獎(jiǎng)盛典
- 2024年大數(shù)據(jù)分析公司與中國政府合作協(xié)議
- 一年級(jí)數(shù)學(xué)(上)計(jì)算題專項(xiàng)練習(xí)匯編
評(píng)論
0/150
提交評(píng)論