GithubHelp home page GithubHelp logo

Comments (6)

rrousselGit avatar rrousselGit commented on May 15, 2024 3

Oh, I know

It's the good-old "a provider is scoped to its route"

By using ProviderScope inside a route, the override is not accessible to other routes.

from riverpod.

rrousselGit avatar rrousselGit commented on May 15, 2024 1

Honestly, this is more of an issue with Overlay than riverpod. flutter/flutter#36220 should be fixed.
Ideally by merging flutter/flutter#39104

As for how to fix it... Maybe consume the value above the OpenContainer and re-override ProviderScope inside the builder with the true value

from riverpod.

rrousselGit avatar rrousselGit commented on May 15, 2024

In your case, this happens not because of navigation, but because of Overlay

During the transition, your Consumer is rendered above PageOne for a moment.

from riverpod.

RobertBrunhage avatar RobertBrunhage commented on May 15, 2024

Ohh I see but then what would be a good solution for that? As that value is used by both and I can not put it above the MaterialApp as let's say I have no access to the value there. (Getting the user after sign in).

It feels weird to wrap both the ClosedBuilder return value and the OpenBuilder return value with a override

from riverpod.

RobertBrunhage avatar RobertBrunhage commented on May 15, 2024

Yeah did that and it works, thanks for the help!

from riverpod.

samu-developments avatar samu-developments commented on May 15, 2024

Honestly, this is more of an issue with Overlay than riverpod. flutter/flutter#36220 should be fixed.
Ideally by merging flutter/flutter#39104

As for how to fix it... Maybe consume the value above the OpenContainer and re-override ProviderScope inside the builder with the true value

Hi, I'm trying to implement this solution, however I'm getting this error:
Unsupported operation: ProviderScope was rebuilt with a different ProviderScope ancestor.
along with:

════════ Exception caught by widgets library ═══════════════════════════════════════════════════════
Updated the list of overrides with providers that were not overriden before
'package:riverpod/src/framework/container.dart':
Failed assertion: line 247 pos 9: 'unusedOverrides.isEmpty'
final Widget closedScreen;

@override
  Widget build(BuildContext context) {
    return Consumer((context, watch) {
      final bool favorited = watch(favoritedProvider);
      return OpenContainer(
        closedBuilder: (_, __) {
          return ProviderScope(
            overrides: [
              favoritedProvider.overrideWithValue(favorited),
            ],
            child: closedScreen,
          );
        },
        openBuilder: (_, __) {
          return Container();
        },
      );
    });

The closedScreen builds fine on initial build, only during animation (when closedScreen is tapped) is the error thrown. What am I doing wrong? Thanks

flutter_riverpod: ^0.6.1
animations: ^1.1.2

from riverpod.

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.