AppBar full transparent

Problem Is there any way to make the AppBar fully transparent without using the Stack Widget?? This is my AppBar right now (It’s transparent but not fully, it has a little white shadow) AppBar( automaticallyImplyLeading: false, backgroundColor: const Color.fromARGB(0, 255, 255, 255).withOpacity(0.1), shadowColor: const Color.fromARGB(0, 255, 255, 255).withOpacity(0.1), title: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Row(… Read More AppBar full transparent

Add document with auto-generated ID in sub collection?

I’m trying to add a document with auto-generated ID in reviews/something using: await addDoc(collection(dbFirestore, "reviews", route.params.id), { rating: rating, text: text, user: { id: user.id, username: user.username, avatar: user.avatar, }, }); But I get: Invalid collection reference. Collection references must have an odd number of segments, but reviews/XXX has 2. >Solution : Assume reviews is… Read More Add document with auto-generated ID in sub collection?