GitHub鏈接git
滑動曝光埋點框架,支持SliverList、SliverGridgithub
滑動曝光埋點用於滑動列表組件中的模塊曝光,例如Flutter中的SliverList
、SliverGrid
。 當SliverList
中的某一個行(或列)移動到ViewPort
中,而且顯示比例超過必定閾值時,咱們把這個事件記爲一次滑動曝光事件。框架
固然咱們對滑動曝光有一些額外的要求:ide
滑動曝光的核心難點是計算組件的露出比例。也是說咱們須要知道ListView
中的組件的總高度
、當前顯示高度
。 這兩個高度作除法就能夠得出比例。佈局
組件的總高度能夠在renderObject
中獲取。咱們能夠獲取renderObject
下的size
屬性,其中包含了組件的長寬。ui
顯示高度能夠從SliverGeometry.paintExtent
中獲取。spa
dependencies:
flutter_sliver_tracker: ^1.0.0
複製代碼
import 'package:xm_sliver_listener/flutter_sliver_tracker.dart';
複製代碼
ScrollViewListener
捕獲滾動事件,ScrollViewListener
必須包裹在CustomScrollView
之上。class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
// 經過ScrollViewListener捕獲滾動事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: <Widget>[
],
),
),
);
}
}
複製代碼
SliverToBoxAdapter
中監聽滾動中止事件,並計算顯示比例class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
// 經過ScrollViewListener捕獲滾動事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: <Widget>[
SliverToBoxAdapter(
// 監聽中止事件,若是在頁面上展現比例,能夠自行setState
child: SliverEndScrollListener(
onScrollInit: (SliverConstraints constraints, SliverGeometry geometry) {
// 顯示高度 / sliver高度
Fluttertoast.showToast(msg: "展現比例:${geometry.paintExtent / geometry.scrollExtent}");
},
onScrollEnd: (ScrollEndNotification notification,
SliverConstraints constraints,
SliverGeometry geometry) {
Fluttertoast.showToast(msg: "展現比例:${geometry.paintExtent / geometry.scrollExtent}");
},
child: Container(
height: 300,
color: Colors.amber,
),
),
),
],
),
),
);
}
}
複製代碼
SliverList
和SliverGrid
中監聽滾動中止事件,並計算顯示比例class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
// 經過ScrollViewListener捕獲滾動事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: <Widget>[
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
// 監聽滾動中止
return SliverMultiBoxScrollEndListener(
debounce: 1000,
child: Container(
height: 300,
color: Colors.redAccent,
child: Center(
child: Text("SliverList Item", style: TextStyle(fontSize: 30, color: Colors.white))
),
),
onScrollInit: (double itemLength, double displayedLength) {
Fluttertoast.showToast(msg: "顯示高度:${displayedLength}");
},
onScrollEnd: (double itemLength, double displayedLength) {
Fluttertoast.showToast(msg: "顯示高度:${displayedLength}");
},
);
},
childCount: 1
),
),
],
),
),
);
}
}
複製代碼
SliverList
和SliverGrid
中監聽滾動更新事件,並計算顯示比例class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
// 經過ScrollViewListener捕獲滾動事件
body: ScrollViewListener(
child: CustomScrollView(
slivers: <Widget>[
SliverList(
delegate: SliverChildBuilderDelegate(
(BuildContext context, int index) {
// 監聽滾動更新事件
return SliverMultiBoxScrollUpdateListener(
onScrollInit: (double percent) {
// percent 列表項顯示比例
},
onScrollUpdate: (double percent) {
// percent 列表項顯示比例
},
debounce: 1000,
// percent 列表項顯示比例
builder: (BuildContext context, double percent) {
return Container(
height: 200,
color: Colors.amber.withAlpha((percent * 255).toInt()),
child: Center(
child: Text("SliverList Item Percent ${percent.toStringAsFixed(2)}", style: TextStyle(fontSize: 30, color: Colors.white))
),
);
},
);
},
childCount: 6
),
),
],
),
),
);
}
}
複製代碼