Answers for "rounded bottom appbar"

0

rounded bottom appbar

AppBar(
    title: Text('My App'),
    shape: RoundedRectangleBorder(
      borderRadius: BorderRadius.vertical(
        bottom: Radius.circular(30),
      ),
    ),
  ),
Posted by: Guest on February-09-2022

Code answers related to "rounded bottom appbar"

Browse Popular Code Answers by Language