Code Monkey home page Code Monkey logo

Comments (4)

emanuel-braz avatar emanuel-braz commented on June 7, 2024

Hi @YunhuiLiu140502 , sorry for the delay, I tried to reproduce the problem on my computer, but I couldn't.

Could you check if OneContext is being used elsewhere in the application before MaterialApp starts? You are probably trying to use some methods that will only be available after the first MaterialApp build.

OneContext needs to be initialized by MaterialApp before it can be used in the application. This error exception occurs when OneContext context has not yet loaded and you try to use some method that needs the context, such as the showDialog, dismissSnackBar, showSnackBar, showModalBottomSheet, showBottomSheet or popDialog methods.

If you need to use any of these OneContext methods before defining the MaterialApp, a safe way is to check if the OneContext context has already been initialized.

e.g. if (OneContext.hasContext) {OneContext ().showDialog (...);}

PS. All widgets below the MaterialApp have full access to the OneContext methods.

onecontext

from one_context.

emanuel-braz avatar emanuel-braz commented on June 7, 2024

Iā€™m closing this issue because of inactivity

from one_context.

maheshlalu avatar maheshlalu commented on June 7, 2024

I am getting same issue, @emanuel-braz please update on it.

from one_context.

emanuel-braz avatar emanuel-braz commented on June 7, 2024

Hi @maheshlalu , there is a reason to show this error, it's because the Flutter needs the context instance to be able to show dialogs. If there is no context, the lib can't do anything about that, unless, warn that something is wrong.

Solutions:

1 - Obviously, do not try show dialogs if there is no context available.(generaly this happens before the MaterialApp get mounted)

2 - If (for a specific reason) you not sure about if the context will be available. Please check it before.
e.g. if (OneContext.hasContext) {OneContext().showDialog(...);}

3 - Send a reproducible code, in order to I investigate deeply if there is a bug.

4 - If none of this works, you can do more for that, please send a PR that fix it. I'll thank you!

from one_context.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.