PiN73

Results 25 comments of PiN73

Same problem no Windows ``` C:\Users\Pavel\Phone>python adb-sync\adb-sync --reverse /sdcard/DCIM . INFO:root:Sync: local b'./DCIM', remote b'/sdcard/DCIM' Traceback (most recent call last): File "adb-sync\adb-sync", line 883, in main() File "adb-sync\adb-sync", line 870,...

What is profit to have both mutable and immutable classes with identical fields?

Not sure if I fully understand your use case, but generally you can create new instance of freezed immutable object with some fields changed using copyWith

Also the variable names for Dart (not sql-string) may be converted to lowerCamelCase like column names? ```dart Selectable myQuery({@required String xValue, @required String yValue}) ``` Not sure about in-sql variables...

Or maybe arguments order in Dart could be the same as in .moor, if declared. I mean at the moment ```sql myQuery(:x_value AS TEXT, :y_value AS TEXT): SELECT * FROM...

Exactly the same problem, solved by `npm install electron` before `npm install`

Moved from https://github.com/flutter/flutter/issues/82159

Or just ```dart import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: ElevatedButton( onPressed: () => throw Exception(), child: const...