flutter_eval icon indicating copy to clipboard operation
flutter_eval copied to clipboard

Code push for Flutter, powered by dart_eval

Results 36 flutter_eval issues
Sort by recently updated
recently updated
newest added

When loading an evc file with RuntimeWidget, I got the following error: `dart_eval runtime exception: type '$InstanceImpl' is not a subtype of type 'BridgeSuperShim' in type cast` **dart_eval verion**: dart_eval:...

hi @team, I have an issue with Map type ``` library hot_update; import 'dart:convert'; import 'package:eval_annotation/eval_annotation.dart'; import 'package:flutter/material.dart'; @RuntimeOverride('#myapp_main_scaffold_1') // ignore: no_leading_underscores_for_local_identifiers Widget scaffoldUpdate(BuildContext context, int counter, void Function() _incrementCounter)...

please support ListView, Scroll, Stack widgets

When defining our own `Widget`s, we always need `$Key` as a parameter type. However, the file `package:flutter_eval/foundation.dart` seems to be missing, so we can't import this type. I can work...

The class InkWell is registered to the compiler, but the constructor is not.

The `$ShapeBorder` wrapper is defined, but not registered to the compiler or runtime. This makes `InkWell` unusable, because that class references this type.

Add `EvcLoader` and its implementations for asset, file, http fetching to: - reuse code loading logic between widgets - support custom loaders for e.g. fetching files over gRPC, auth-only HTTP...

I tried setting `theme: ThemeData(brightness: Brightness.dark),` on the materialApp, it's not working. I also tried using [evalpad](https://ethanblake.xyz/evalpad/#/) with this code:: ``` import 'package:flutter/material.dart'; Widget main() { return MyApp(); } class...

Hi, Thank you for this awesome package. However, I wonder why I get this error on Release Mode but it's working well on Debug Mode Log ``` Launching lib/main.dart on...

I find flutter_eval quite useful for implementing apps for teaching flutter (like a more advanced dartpad). However, all examples I've found implement the dynamic widget using a single .dart file...