반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- uint16array
- hls.js
- Flutter
- segment
- babel
- M3U8
- three.js
- KakaoMap
- userevent_tracker
- Babel standalone
- Redux
- webrtc
- REST API
- cursor-ubuntu-installer
- Excel
- Image Resize typescript
- swagger-typescript-api
- http live streaming
- react
- code editor
- html2canvas
- Prism.js
- uint8array
- typescript
- HLS
- Game js
- node
- how to install cursor on ubuntu
- web track
- jszip
Archives
- Today
- Total
목록FirebaseAnalytics (1)
Never give up

화면 이동을 tracking 하는 용도로 사용할 때 RouteObserver를 사용하면 간단합니다 void main() { runApp(MaterialApp( home: const MyApp(), navigatorObservers: [CommonRouteObserver()], )); } MaterialApp의 navigatorObservers에 등록을 해주고 RouteObserver를 상속받은 클래스의 기능을 정의해줍니다 class CommonRouteObserver extends RouteObserver { void _saveScreenView( {PageRoute? oldRoute, PageRoute? newRoute, String? routeType}) { debugPrint( '[track] sc..
Flutter
2022. 9. 8. 13:57