Alexandre Richonnier

Results 19 comments of Alexandre Richonnier

You're welcome, I apply your proposals, there remains the 'map' problem and the example of the beginning to decide on your side.

I fix golint and add a full example. About Map / array, adding another assert could be a solution...

Upgraded to v3 and rename to OnJSON add sample and unit test and modify readme...

Hi! Very interested in your v2, Can we have a shoot (beta) on it ? Thank you very much!

Hello, thank you for reply, Unfortunately, in the meantime, I left with another open source project… But I will keep an eye on yours. Anyway, about Docker, I can give...

You can add this dependency in dev_dependencies, then at your root directory create a "stories" directory and a main_storyboard.dart fill this last file with a main add your stories: void...

To refresh your details on new arguments, you need to listen to them. To do that, You can add final parameter = ModalRoute.of(context)!.settings; in you build function or move your...

A generic way for me to suppress this ugly anyof null that break openapi generator was to rewrite the fastapi scheme output like: ```py def handle_anyof_nullable(schema: dict): """Recursively modifies the...

You could simply do that by overriding materialWrapper like this: ```dart Widget materialWrapper(BuildContext _, Widget? child) => MaterialApp( theme: ThemeData.light(), darkTheme: ThemeData.dark(), debugShowCheckedModeBanner: false, useInheritedMediaQuery: true, locale: TranslationProvider.of(_).flutterLocale, supportedLocales: AppLocaleUtils.supportedLocales,...