Joshua Frank
Joshua Frank
It would be great to have some sort of flag or environmental variable to not start a ROS master. My use case is that I want to use Jupyter lab...
All I get is a blank screen. Here is a minimal example. ` import 'package:crop/crop.dart'; import 'package:flutter/material.dart'; class CropView extends StatelessWidget { final controller = CropController(aspectRatio: 1 / 1); @override...
## Fix: Avoid decoding bitmaps on the main thread ### Summary This PR updates `ImageElement` to decode bitmaps off the main thread. Previously, bitmap decoding happened inside a `remember` block...
It looks like bitmaps are being decoded on the main thread. While this is a minor issue on most devices it can cause ANRs. StrictMode policy violation; ~duration=32 ms: android.os.strictmode.DiskReadViolation...