Flutter web: tried to call a non-function, such as null: 'dart.global.firebase.storage

前端 未结 1 991
天命终不由人
天命终不由人 2021-01-17 20:32

Im using Firebase plugin for web and managed to work with firestore and authentication. Now, Im trying to enable firebase storage but when i instanciate Storage gives me thi

1条回答
  •  余生分开走
    2021-01-17 20:57

    Solved!

    In index.html add the latest version of firebase storage:

    
    
    
        
        
    
        
        
        
        
        
    
    
    
    
    

    In yourClass.dart :

    import 'package:firebase/firebase.dart' as fb;
    
      fb.StorageReference _ref = fb.storage().ref('images');
    

    0 讨论(0)
提交回复
热议问题