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