LanarsInc/animated-bottom-navigation-bar-flutter

Bottom navigation bar color

ahmed2hamy opened this issue · 4 comments

How can I change this color to be transparent in front of the view ?

IMG_20210219_185348

@ahmed2hamy You need to add extendBody: true in Scaffold widget.
See example

 @override
  Widget build(BuildContext context) {
    return Scaffold(
      extendBody: true,
      ....

@ahmed2hamy Did that help?

I'm going to close it for now. Feel free to reopen if needed.

Yes it worked, Thanks for the help and sorry for the late response.