此時您的快照為空。所以你要好好處理 builder: (context, AsyncSnapshot<DocumentSnapshot> snapshot) { if (snapshot.connectionState == ConnectionState.done){ return Scaffold( body: Row( children: [ snapshot.data.exists ? Expanded( child: TextButton.icon( onPressed: () { FirebaseFirestore.instance .collection("UserData") .doc(_auth.currentUser.uid) .collection("Favourites") .doc(widget.items["name"]) .delete(); }, label: Text( "Unfavourite Item", style: TextStyle( fontWeight: FontWeight.bold, color: Theme.of(context).accentColor), ), icon: Icon( Icons.star, color: Theme.of(context).accentColor, ), style: TextB