Flutter Web : Is it Firebase Analytics support in Flutter web application?

后端 未结 4 1097
走了就别回头了
走了就别回头了 2021-01-04 19:54

Can we implement Firebase Analytics in a Flutter Web application? If not, is there any other option?

4条回答
  •  别那么骄傲
    2021-01-04 20:49

    First import Firebase

    import 'package:firebase/firebase.dart' as Firebase;
    

    Update index.html

    
      
      
    
      
    
      
    
    

    And log events

    final analytics = Firebase.analytics();
    analytics.logEvent("event_name", {});
    

提交回复
热议问题