Results 19 comments of pavelpz

Congratulations on reaching Flutter Favorite. Thank you @ryanheise, @alexmercerind and @megamegax for your efforts in preparing the windows and linux version.

React components in angular2? It could solve [#2753](https://github.com/angular/angular/issues/2753), [#7596](https://github.com/angular/angular/issues/7596) too!!!

I have tens of thousands of XHTML markup files, containing eLearning exercises (with GapFill, Pairing and other eLearning activity components). In angular1 (ngInclude) and react (JSX/TSX template, which is just...

Not yet, I will come back later.

Hi @MrSwitch, Yes, I can. I put it to the https://github.com/borisyankov/DefinitelyTyped repository.

Hi, pull request to repository is prepared (see https://github.com/borisyankov/DefinitelyTyped/pull/2042). If you want to use TS definition on you site, download it from https://github.com/PavelPZ/DefinitelyTyped, choose link from the list. I tried...

Hi @MrSwitch, hellojs is in master github now :-). For JavaScript development I use MS Visual Studio. After including some of DefinitelyTyped definition to your project, I can use all...

Hi @MrSwitch, 1. all interface names start with "HelloJS" prefix. The only "hello" is in "declare var hello: HelloJSStatic;" which reflects your "var hello = function(name){..." statement 2. yes, I...

Will deep copy covers following example? ``` @freezed class RouteState with _$RouteState { factory RouteState.home() = HomeState; factory RouteState.books() = BooksState; factory RouteState.book(int id) = BookState; } ``` Following solution...

After two weeks of working with riverpod and freezed, I must say that this is a perfect synergy. My app model is all fine-tuned now only in the dart project,...