Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
auto_track_plugin
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
epoll-j
2024-12-06 10:52:09 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0bb9361a80ce9e9dbde8594c5243bbfe979fd373
0bb9361a
1 parent
121827c6
docs(README.md): 更新README文档,增加HTTP请求监控功能说明。
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
README.md
README.md
View file @
0bb9361
...
...
@@ -2,7 +2,7 @@
> Flutter全埋点插件,支持 Android 和 iOS
低侵入全局自动埋点,自动记录页面进入、退出,点击、滑动等事件,并支持自定义事件。
低侵入全局自动埋点,自动记录页面进入、退出,点击、滑动
、http请求
等事件,并支持自定义事件。
## Getting Started 使用指南
...
...
@@ -69,6 +69,7 @@ class _MyAppState extends State<MyApp> {
.
enableClick
()
// 启用点击统计
.
enableDrag
()
// 启用滑动统计
.
enableIgnoreNullKey
()
// 忽略空的key,如果不忽略,没有配置key的页面或事件会基于一定的规则生成一个随机的key进行上报统计
.
enableHttpRequest
()
// 启用http请求监听
.
enableLog
();
// 启用日志,建议在debug模式下开启,会打印一些埋点相关的日志
super
.
initState
();
...
...
Please
register
or
login
to post a comment