Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the state class _GNavState public #77

Open
robertmrobo opened this issue Apr 12, 2022 · 12 comments
Open

Make the state class _GNavState public #77

robertmrobo opened this issue Apr 12, 2022 · 12 comments

Comments

@robertmrobo
Copy link

I would like to use the state in a Global Key and access it from different widgets like the Navigation Drawer so that when the user clicks on a menu item on the navigation drawer, the bottom navigation drawer can auto animate to the selected menu.

@YDA93
Copy link

YDA93 commented Oct 19, 2022

Exact issue i was looking for.

@sooxt98
Copy link
Owner

sooxt98 commented Oct 19, 2022

@YDA93 Hi there, i would suggest you to change Gnav.selectedIndex instead of modifying the actual navbar state directly. There's an example showing how changing tabpage trigger Gnav to change selectedIndex

https://github.com/sooxt98/google_nav_bar/blob/master/example/lib/main_advance.dart

@YDA93
Copy link

YDA93 commented Oct 19, 2022

I control my tabs through router which allows me to change tabs from any widget I want.
The problem with this package is I can't change the nav bar state from another deep widgets unless I use some notifiers which is requesting more work for a simple thing.

Normally most drawers and nav bars in flutter uses a key for this purpose.

Please consider it as feature request.

Thank you! @sooxt98

@sooxt98
Copy link
Owner

sooxt98 commented Oct 19, 2022

@YDA93 sorry i can't, i won't promoting people to wring bad codes, which is a bad design pattern which use state globally

@YDA93
Copy link

YDA93 commented Oct 19, 2022

@sooxt98 This package is beautifully designed but is limited when it comes to this.

convex_bottom_bar has flutter favorite badge and it use global state.

It doesn't make sense.

@YDA93
Copy link

YDA93 commented Oct 19, 2022

@sooxt98
Copy link
Owner

sooxt98 commented Oct 19, 2022

@YDA93 please read this https://softwareengineering.stackexchange.com/questions/148108/why-is-global-state-so-evil
If you want this feature, you may fork it yourself, or use some hack like getx, get_it, bloc, flutter_redux, mobx

@sooxt98
Copy link
Owner

sooxt98 commented Oct 19, 2022

@sooxt98 If you don't like to introduce new packages, use this instead https://medium.com/flutter-community/stop-using-state-management-libraries-48a81ed7979d

@YDA93
Copy link

YDA93 commented Oct 19, 2022

@sooxt98
After I have read all your references and understand from where you're coming from.

When I were saying "Global state" I was wrong.

I haven't made any single Global variable, state in the PR.

I made the class to be Public which is very different.

Meaning I cannot access it globally unless I attach global key to it:
static final appBarKey = GlobalKey<GNavState>();

Users of this package can decide if they wish to use global key to control the state, Flutter already gave us null safety to check the state existence.

Plus I made it possible to access the state through context using findAncestorStateOfType., which again has null safety and isn't considered as Global state, it searches for the first existence of such state otherwise returns null.

https://api.flutter.dev/flutter/widgets/BuildContext/findAncestorStateOfType.html

https://api.flutter.dev/flutter/widgets/GlobalKey-class.html

https://stackoverflow.com/questions/46057353/controlling-state-from-outside-of-a-statefulwidget

@sooxt98
Copy link
Owner

sooxt98 commented Oct 19, 2022 via email

@YDA93
Copy link

YDA93 commented Oct 19, 2022

@sooxt98
At the end of the day it's the user option to evaluate the case and decides to create global key or not.

It's not in the package code so we have no any anti-pattern design so far.

Since we only made the class public what stops this?

@YDA93
Copy link

YDA93 commented Oct 19, 2022

@sooxt98
We only made it possible to control the state from two methods:

Using GlobalKey or through findAncestorStateOfType

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants