Coder Social home page Coder Social logo

Comments (9)

rrousselGit avatar rrousselGit commented on July 20, 2024 1

I mean, there's likely a different way to do what you want.
But I don't know your architecture.

from riverpod.

rrousselGit avatar rrousselGit commented on July 20, 2024

Local state is not supported by providers.

What is your use-case in creating the ChangeNotifier locally like that?

from riverpod.

bcihanc avatar bcihanc commented on July 20, 2024

EditQuestionScreen build before firebase fetch and deserialize. Actually I just need to know, can I create global provider with widget params in riverpod?

Like this

class AHookWidget extends HookWidget {
  AHookWidget({this.question, this.answers});

  final QuestionModel question;
  final List<AnswerModel> answers;

  // i dont want local variable like this, i want global
  final aProvider = ChangeNotifierProvider(
      (ref) => QuestionProvider(question: this.question, answers: this.answers));

  @override
  Widget build(BuildContext context) {
    final provider = useProvider(aProvider);
    return Container();
  }
}

class ASubHookWidget extends HookWidget {

  @override
  Widget build(BuildContext context) {
    final provider = useProvider(aProvider);
    return Container();
  }
}

from riverpod.

rrousselGit avatar rrousselGit commented on July 20, 2024

No you can't

from riverpod.

bcihanc avatar bcihanc commented on July 20, 2024

I'm sorry to hear that, thank you for your help anyway 😊

from riverpod.

bcihanc avatar bcihanc commented on July 20, 2024

may be stupid but like this

onPressed: () async {
  QuestionModel question = await api.getQuestion();
  List<AnswerModel> answers = await api.getAnswers();

  MaterialPageRoute(builder: (context) => 
    EditQuestionScreen(question: question, answers: answers));
}
class EditQuestionScreen extends StatelessWidget {
  EditQuestionScreen({this.question, this.answers});

  final QuestionModel question;
  final List<AnswerModel> answers;

  @override
  Widget build(BuildContext context) {
    return ChangeNotifierProvider(
        create: (context) => QuestionProvider(
            question: this.question,
            answers: this.answers),
        child: Container());
  }
}

from riverpod.

rrousselGit avatar rrousselGit commented on July 20, 2024

Put the questions and answers inside a provider
Then you will be able to put your ChangeNotifier in a provider too

from riverpod.

bcihanc avatar bcihanc commented on July 20, 2024

Ok, i will do that, the problem will be solved that case. Thanks again, you saved me.

from riverpod.

bcihanc avatar bcihanc commented on July 20, 2024

I think ScopedProvider is the solution.

final scopedProvider = ScopedProvider<String>((_) => throw UnimplementedError());

class AWidget extends HookWidget {
  AWidget({@required this.value});
  final String value;

  @override
  Widget build(BuildContext context) {
    return ProviderScope(
      overrides: [scopedProvider.overrideWithValue(this.value)],
      child: BWidget()
     );
  }
}
class BWidget extends HookWidget {
  @override
  Widget build(BuildContext context) {
    final providerValue = useProvider(scopedProvider);
    return Text(providerValue);
  }
}

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.