Kevin McDermott-Carpenter

Results 2 issues of Kevin McDermott-Carpenter

When running on web using the canvaskit renderer images are pixelated. canvaskit ![canvaskit](https://user-images.githubusercontent.com/88255595/154757349-e85a87a5-1b3f-41e1-a035-e4d54b6de0d9.png) html ![html](https://user-images.githubusercontent.com/88255595/154757354-76fed787-75a7-4287-94fb-82b3153adb37.png) ```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...