appbar shadow flutter remove code example
Example 1: remove appbar shadow flutter
AppBar(
...
elevation: 0.0,
),
Example 2: flutter remove dropdown shadow appbar
appBar: new AppBar(
title: new Text('My App Title'),
elevation: 0.0,
),