简体   繁体   中英

How to add rounded corners to flutter app bar?

i'm trying to create an app bar in flutter that has two layers - one black-colored top and a blue-colored bottom. The bottom needs to have rounded top edges. I'm attaching a picture for reference. How do I do about that?

在此处输入图片说明

I'm currently using the AppBar class in Scaffold and I can make a simple AppBar like this:

AppBar(
      elevation: 0,
      backgroundColor: Color(0xFFB6E6FE),
      leading: CustomLeadingButtonClass(
        onPressed: () {},
        child: Icon(
          Icons.arrow_back_ios,
          color: Colors.black,
          size: 18,
        ),
      ),
    );
class BlogApbar extends StatelessWidget implements PreferredSizeWidget {
 final double _pref = 140.0;

  Widget build(BuildContext context) {
    return Container( child: YOURCHILD, decoration: BoxDecoration(
borderRadius: BorderRadius.only()));
  }


  @override
  Size get preferredSize => Size.fromHeight(_pref);

}

You can make your own appbar custom by doing something like this.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM