Results 19 comments of pavelpz

I have the same problem. Thanks to @Fayiz-A for detailed documentation. What are the plans to solve the it?

I prefer the B) option, which allow combination e.g.: ``` var handler = Cascade() .add(webSocketHandler) .add(router.handler) .add(staticFileHandler) .add(application) .handler; ```

Exactly (and sorry for my bad English). I like design time compilation but cannot find feasible solution for my case. Large web sites could contain thousands of messages, only few...

Hi rxaviers, what do you thing about following? Globalize.messageFormatter could return or string (for plain message) or formatter (for complex message). plain message: ``` en: { plain: 'My plain text...

... or another approach: messages: ``` let enMessages = { en: { plain1: 'My plain text message 1', plain2: 'My plain text message 2', complex: 'Hello, {0}' }}; ``` code...

I prepared example [here](https://github.com/PavelPZ/riverpod_navigator/tree/main/examples/riverpod_navigator_idea). It is about how to use riverpod and freezed to simplify Flutter Navigator 2.0 usage. Wouldn't it be suitable for your cook book?

Ok, I will prepare a modified version and let you know.

I prepared new example version, it is available [here](https://github.com/PavelPZ/riverpod_navigator/tree/riverpod_example/examples/riverpod_navigator_example). Feel free to comments it.

Running example is available [here](https://pavelpz.github.io/).