v1.0.1
flip_panel
一个带有内置动画的翻转面板包
112喜欢 52近 30 天下载30Pub 分数
平台暂无数据
一个带有内置动画的翻转面板包
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
pub package https://github.com/hnvn/flutter_flip_panel/workflows/unit%20test/badge.svg
A package for flip panel with built-in animation
https://github.com/hnvn/flutter_flip_panel/blob/master/screenshots/flip_image.gif?raw=true https://github.com/hnvn/flutter_flip_panel/blob/master/screenshots/flip_clock.gif?raw=true
import 'package:flip_panel/flip_panel.dart';
Create a flip panel from iterable source:
final digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
FlipPanel.builder(
itemBuilder: (context, index) => Container(
color: Colors.black,
padding: const EdgeInsets.symmetric(horizontal: 6.0),
child: Text(
'${digits[index]}',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 50.0,
color: Colors.white),
),
),
itemsCount: digits.length,
period: const Duration(milliseconds: 1000),
loop: 1,
)
Create a flip panel from stream source:
FlipPanel<int>.stream(
itemStream: Stream.periodic(Duration(milliseconds: 1000), (count) => count % 10),
itemBuilder: (context, value) => Container(
color: Colors.black,
padding: const EdgeInsets.symmetric(horizontal: 6.0),
child: Text(
'$value',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 50.0,
color: Colors.white
),
),
),
initValue: 0,
);