MELLATI Fatah

Results 44 comments of MELLATI Fatah

Thank you @amoslai5128

Hi all, I added CRUD and AUTH examples. Any review is welcomed. cc @amoslai5128

Hi all, I added theme management example.

I added app l10n and I18n and animation examples. cc @amoslai5128 @tk2232

Hi @cidothia If I understand your case well, you want the `onGenerateTitle` method to be called when you switch between languages. I used a simple example to check the case,...

@quentinleguennec Thank you for the issue Is this simple example represents your case ```dart import 'package:flutter/material.dart'; import 'package:states_rebuilder/states_rebuilder.dart'; void main(List args) { runApp(_App()); } class Model { String message =...

@quentinleguennec Ok! first put the injected state outside the widget tree; ```dart Injected injectedState; //Better with null safety: late final Injected injectedState; ``` And change the constructor as follows: ```dart...

@quentinleguennec >I tried it like this (not using null safety because I'd have to migrate the rest of my code first): I also tried it the same way, and it...

@quentinleguennec Try commenting the didChangeAppLifecycleState lines ```dart @override void didChangeAppLifecycleState(AppLifecycleState state) => injectedState.setState((s) => s.didChangeAppLifecycleState(state), ); ```

@amoslai5128 thanks for the issue. Case 1 it is a bug, and it is fixed. Case 2 and 3 are similar.