dart-pad
dart-pad copied to clipboard
An online Dart editor with support for console, web, and Flutter apps
## What happened? In an anonymous async function I called main method, from main method (recursively) ## Additional info ### Browser Browser: Microsoft Edge(iOS) Version: 99.0.1150.52 Are you using any...
Steps to reproduce: - open Chrome DevTools - go to https://dartpad.dev/?channel=dev&id=ea50f75646c5fb0c4433a4b82cfb5fea - observe that there are a few requests to `/analyze` made to `stable.api` Eventually we make a request to...
It might be possible to configure our markdown generator to support relative paths for image URLs. This is a pain point for authors who develop on a local machine on...
Can it output 'anything' that might tell us what sort of native instruction would get produced? Not looking for exact answer, but any form of annotated ASM-like commands would tell...
``` import 'dart:async'; void main() { new Timer.periodic(const Duration(), (timer) { print("hello"); }); new Timer.periodic(const Duration(), (timer) { print("hello2"); }); } ``` gets annoying after a while :)
Embeds don't run analyze right away. For example, see this [invalid Dart snippet](https://dartpad.dev/embed-flutter.html?id=be111bbae41dd57399e558835e2ad345). This is because we tell it not to: https://github.com/dart-lang/dart-pad/blob/36192896815f9d6d175a858f238d526bad191f55/lib/embed.dart#L489 @RedBrogdon is this a design choice or just...
Would love to see support for importing the ROHD package in dart pad! https://pub.dev/packages/rohd
## What happened? Upon navigating to https://dartpad.dev , I either get a timeout error in my browser, or the site keeps loading for eternity.  https://www.dartpad.dev opens properly though. ...