Frideos

Results 9 comments of Frideos

Hello @sachaarbonel, your requests are interesting, and I think I can take them into account for one of the next releases. Any PR is welcome and really appreciated. I've just...

Hello @aniltc, could you provide more details?

Hello @probegins, I am not sure to fully understand the result that you would want to achieve. Could you provide a repo to show some code?

Hello @probegins , I've just added an example. Let me know if I understood correctly what you meant. Example name: 'Products catalog': - [Bloc](https://github.com/frideosapps/frideos_examples/blob/master/lib/src/blocs/cart_bloc.dart) - [Screen](https://github.com/frideosapps/frideos_examples/blob/master/lib/src/screens/cart_page.dart)

It isn't how it works in the example I wrote? I've used the 'id' property of the product to establish a relation between fields in a different place. Pay attention...

@gitflutter you need to create model class to deserialize the json resulted from the API. You can find an example on how you can achieve this in the [Trivia example](https://github.com/frideosapps/trivia_example)....

Hello @gitflutter, checkout this example where you can find a generic bloc provider providing differents blocs: [basics example](https://github.com/frideosapps/frideos_examples/tree/master/02_basics).

You can import the blocs where you need it. If you use a provider the bloc is initialized before you pushing the screen and disposed when you leave it, so...

Hello @gitflutter, you have two options: by using the RxDart [combineLatest](https://pub.dev/documentation/rxdart/latest/rx/Observable/combineLatest.html) method or making something similar I made in this [dynamic fields validation](https://github.com/frideosapps/dynamic_fields_validation) example, you may want to give it...