Flutter是谷歌的移動UI框架,能夠快速在iOS和Android上構建高質量的原生用戶界面。git
IT界著名的尼古拉斯·高爾包曾說:輪子是IT進步的階梯!熱門的框架千篇一概,好用輪子萬里挑一!Flutter做爲這兩年開始崛起的跨平臺開發框架,其第三方生態相比其餘成熟框架還略有不足,但輪子的數量也已經不少了。本系列文章挑選平常app開發經常使用的輪子分享出來,給你們提升搬磚效率,同時也但願flutter的生態愈來愈完善,輪子愈來愈多。github
本系列文章準備了超過50個輪子推薦,工做緣由,儘可能每1-2天出一篇文章。markdown
tip:本系列文章合適已有部分flutter基礎的開發者,入門請戳:flutter官網app
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);
},
)
複製代碼
自定義圖標+數字:ui
LikeButton(
likeBuilder: (bool isLiked){
return Icon(Icons.person);
},
likeCount:520
)
複製代碼
自定義圖標+自定義泡泡顏色+數字:spa
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),
),
)
複製代碼
自定義圖標+自定義泡泡顏色+數字修飾:code
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 |