Kevin McDermott-Carpenter
Kevin McDermott-Carpenter
When running on web using the canvaskit renderer images are pixelated. canvaskit  html  ```dart void main() { runApp(const TestApp()); } class TestApp extends StatelessWidget { const TestApp({Key? key})...
using date.endOfMonth returns the start of the next month ```dart final start = DateTime(2021, 08, 01); final end = start.endOfMonth; print(end.toHumanString()); ``` ``` Wed Sep 1 2021 0:0:0 ``` A...