Stu
Stu
Looks like "ws.receive()" is returning None. Also tried running with Flask as the server: ``` %python app.py ... 127.0.0.1 - - [18/Apr/2021 19:57:06] "GET /favicon.ico HTTP/1.1" 404 - 127.0.0.1 -...
Works in web builds, fails in Linux builds. Web vs Linux: 
The following also fails for Linux builds: ``` import 'package:flutter/material.dart'; void main() { Widget left = Container(color: Colors.green); Widget right = Container(color: Colors.red); final proportion = 0.2; Widget child =...
Also fails the same way: ``` import 'package:flutter/material.dart'; void main() { Widget left = Container(color: Colors.green); Widget right = Container(color: Colors.red); final proportion = 0.2; Widget child = LayoutBuilder(builder: (context,...
2 columns: bad: ``` children: [ SizedBox(width: constraints.maxWidth/2, child: left), SizedBox(width: constraints.maxWidth/2, child: right), ], ``` 3 columns: good ``` import 'package:flutter/material.dart'; void main() { Widget left = Container(color: Colors.green);...
Wutt?! ``` // Fails! final proportion = 1/5.0; // Succeeds! final proportion = 1/3.0; ``` in ... ``` import 'package:flutter/material.dart'; void main() { Widget left = Container(color: Colors.green); Widget right...
Resolved in master.
Some questions. Is dart-next the same or different to dart-dio-next? Does dart-next support polymorphism? Does dart-next support outputting plain old Dart classes with simple (non-builder) constructors?
Hi Ahmed, Are you still maintaining this? I'm trying to get a working example of polymorphism. I tried cloning the latest branch from https://github.com/ahmednfwela/openapi-generator With: ``` components: schemas: Store: type:...
I seems that on host, `pip install fastdtw` installs: `_fastdtw.cpython-310-x86_64-linux-gnu.so fastdtw.py __init__.py __pycache__` but in the Docker version, just: `fastdtw.py __init__.py __pycache__` and the __init__py silently fails to import `_fastdtw`....