adding bottom border to appbar android code example
Example: add only bottom border to container flutter
decoration: BoxDecoration(
border: Border(
top: BorderSide(width: 16.0, color: Colors.lightBlue.shade600),
bottom: BorderSide(width: 16.0, color: Colors.lightBlue.shade900),
),
color: Colors.white,
),