sooxt98 / google_nav_bar

A modern google style nav bar for flutter.
MIT License
741 stars 114 forks source link

how to remove elevation from the nav bar #79

Open Salam-pc opened 2 years ago

Salam-pc commented 2 years ago

image

sooxt98 commented 2 years ago

There’s no elevation within this package, it’s from elsewhere, try look around your code.

On Thu, 19 May 2022 at 2:45 PM, Abdussalam Pc @.***> wrote:

[image: image] https://user-images.githubusercontent.com/89230970/169227682-c3027c88-ddb3-4c05-b4af-dd7c520c1d3a.png

— Reply to this email directly, view it on GitHub https://github.com/sooxt98/google_nav_bar/issues/79, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADGCEC3H364TDQAUZP3RUWDVKXPRLANCNFSM5WLD32UQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>

sooxt98 commented 2 years ago

For example boxShadow

On Thu, 19 May 2022 at 2:50 PM, Sheldon Soo @.***> wrote:

There’s no elevation within this package, it’s from elsewhere, try look around your code.

On Thu, 19 May 2022 at 2:45 PM, Abdussalam Pc @.***> wrote:

[image: image] https://user-images.githubusercontent.com/89230970/169227682-c3027c88-ddb3-4c05-b4af-dd7c520c1d3a.png

— Reply to this email directly, view it on GitHub https://github.com/sooxt98/google_nav_bar/issues/79, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADGCEC3H364TDQAUZP3RUWDVKXPRLANCNFSM5WLD32UQ . You are receiving this because you are subscribed to this thread.Message ID: @.***>

razvanduta21 commented 2 years ago
  1. Wrap it in a Container.

  2. If you have something like that delete the boxShadow

return Container( decoration: BoxDecoration(
..... boxShadow: [ color: Colors.black, offset: Offset(0, 3), blurRadius: 7, spreadRadius: 5,
], ), child: GNav(tabs: ....),
); } }