Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

how to make appbar transparent in flutter

Scaffold(
 extendBodyBehindAppBar: true,
  // or, extandbody: true,
 AppBar(
  backgroundColor: Colors.transparent, 
  elevation: 0.0,)
);
 
PREVIOUS NEXT
Tagged: #appbar #transparent #flutter
ADD COMMENT
Topic
Name
8+7 =