前言
Flutter是谷歌的移動UI框架,可以快速在iOS和Android上構建高質量的原生使用者介面。
IT界著名的尼古拉斯·高爾包曾說:輪子是IT進步的階梯!熱門的框架千篇一律,好用輪子萬里挑一!Flutter作為這兩年開始崛起的跨平臺開發框架,其第三方生態相比其他成熟框架還略有不足,但輪子的數量也已經很多了。本系列文章挑選日常app開發常用的輪子分享出來,給大家提高搬磚效率,同時也希望flutter的生態越來越完善,輪子越來越多。
本系列文章準備了超過50個輪子推薦,工作原因,儘量每1-2天出一篇文章。
tip:本系列文章合適已有部分flutter基礎的開發者,入門請戳:flutter官網
正文
輪子
- 輪子名稱:like_button
- 輪子概述:推特點贊效果帶數量滾動動畫
- 輪子作者:zmtzawqlp
- 推薦指數:★★★★
- 常用指數:★★★★
- 效果預覽:
安裝
dependencies:
like_button: ^0.1.9
複製程式碼
import 'package:like_button/like_button.dart';
複製程式碼
用法介紹
用法很簡單,就一個widget:
LikeButton()
複製程式碼
帶數字:
LikeButton(likeCount:520)
複製程式碼
自定義圖示:
LikeButton(
likeBuilder: (bool isLiked){
return Icon(Icons.person);
},
)
複製程式碼
自定義圖示+數字:
LikeButton(
likeBuilder: (bool isLiked){
return Icon(Icons.person);
},
likeCount:520
)
複製程式碼
自定義圖示+自定義泡泡顏色+數字:
LikeButton(
likeBuilder: (bool isLiked){
return Icon(Icons.person,color: isLiked ? Colors.blue : Colors.grey,);
},
likeCount:520,
circleColor:CircleColor(start: Color(0xff00ddff), end: Color(0xff0099cc)),
bubblesColor: BubblesColor(
dotPrimaryColor: Color(0xff33b5e5),
dotSecondaryColor: Color(0xff0099cc),
),
)
複製程式碼
自定義圖示+自定義泡泡顏色+數字修飾:
LikeButton(
likeBuilder: (bool isLiked){
return Icon(Icons.person,color: isLiked ? Colors.blue : Colors.grey,);
},
likeCount:520,
circleColor:CircleColor(start: Color(0xff00ddff), end: Color(0xff0099cc)),
bubblesColor: BubblesColor(
dotPrimaryColor: Color(0xff33b5e5),
dotSecondaryColor: Color(0xff0099cc),
),
countBuilder: (int count, bool isLiked, String text) {
var color = isLiked?Colors.red:Colors.grey;
Widget result;
result = Text(
text,
style: TextStyle(color: color,fontSize: 20),
);
return result;
},
countDecoration:(Widget count){
return Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
count,
SizedBox(
width: 10.0,
),
Text(
"loves",
style: TextStyle(color: Colors.indigoAccent),
)
],
);
}
)
複製程式碼
請求時改變狀態
LikeButton(
onTap: (bool isLiked)
{
return onLikeButtonTap(isLiked, item);
}
)
複製程式碼
這是一個非同步回撥,你可以等待服務返回之後再改變狀態。也可以先改變狀態,請求失敗之後重置回狀態
Future<bool> onLikeButtonTap(bool isLiked, TuChongItem item) {
///send your request here
///
final Completer<bool> completer = new Completer<bool>();
Timer(const Duration(milliseconds: 200), () {
item.isFavorite = !item.isFavorite;
item.favorites =
item.isFavorite ? item.favorites + 1 : item.favorites - 1;
// if your request is failed,return null,
completer.complete(item.isFavorite);
});
return completer.future;
}
複製程式碼
詳細引數
引數 | 描述 | 預設 |
---|---|---|
size | like Widget的大小 | 30.0 |
animationDuration | like widget動畫的時間 | const Duration(milliseconds: 1000) |
bubblesSize | 動畫時候的泡泡的大小 | size * 2.0 |
bubblesColor | 動畫時候的泡泡的顏色,需要設定4種 | const BubblesColor(dotPrimaryColor: const Color(0xFFFFC107),dotSecondaryColor: const Color(0xFFFF9800),dotThirdColor: const Color(0xFFFF5722),dotLastColor: const Color(0xFFF44336),) |
circleSize | 動畫時候的圈的最大大小 | size * 0.8 |
circleColor | 動畫時候的圈的顏色,需要設定2種 | const CircleColor(start: const Color(0xFFFF5722), end: const Color(0xFFFFC107) |
onTap | 點選時候的回撥,你可以在裡面請求服務改變狀態 | |
isLiked | 是否喜歡。如果設定null的話,將會一直有動畫,而且喜歡數量一直增長 | false |
likeCount | 喜歡數量。如果為null的話,不顯示 | null |
mainAxisAlignment | MainAxisAlignment ,like widget和like count widget是放在一個Row裡面的,對應Row的mainAxisAlignment屬性 | MainAxisAlignment.center |
likeBuilder | like widget的建立回撥 | null |
countBuilder | like count widget的建立回撥 | null |
likeCountAnimationDuration | 喜歡數量變化動畫的時間 | const Duration(milliseconds: 500) |
likeCountAnimationType | 喜歡數量動畫的型別(none,part,all)。沒有動畫;只動畫改變的部分;全部部分 | LikeCountAnimationType.part |
likeCountPadding | like count widget 跟 like widget的間隔 | const EdgeInsets.only(left: 3.0) |
countPostion | top,right,bottom,left. count的位置(上下左右) | CountPostion.right |
countDecoration | count 的修飾器,你可以通過它為count增加其他文字或者效果 | null |
結尾
- 輪子倉庫地址:pub.flutter-io.cn/packages/li…
- 系列演示demo原始碼:github.com/826327700/f…