Daniele Cambi
Daniele Cambi
This issue is a collection of thoughts I had when reading the [gskinner article](https://blog.gskinner.com/archives/2021/12/flutter-a-skeleton-app-w-getit-getitmixin.html) on their state management and DI solution using get_it and get_it_mixin. The main goal here is...
Using `go_router_builder: 1.0.15` and generating this route: ```Dart @TypedGoRoute(path: TestRoute.path) class TestRoute extends GoRouteData { final Object? $extra; const TestRoute({this.$extra}); static const path = '/test'; @override Widget build(BuildContext context) =>...
Using `go_router_builder: 1.0.15` and generating this route: ```Dart enum HomeTab { home, profile, settings } @TypedGoRoute(path: '/') class HomeRoute extends GoRouteData { const HomeRoute({this.tab = HomeTab.home}); final HomeTab tab; @override...
Issues Fixed: [https://github.com/flutter/flutter/issues/116837](https://github.com/flutter/flutter/issues/116837) Relevant [https://github.com/flutter/flutter/issues/106121](https://github.com/flutter/flutter/issues/106121) ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree...
**Describe the bug** On the 404 page the "Copy error details" button does not copy anything to the clipboard on Safari. **To Reproduce** Steps to reproduce the behavior: 1. Go...
I've seen most of the ebook servers out there do not support this feature, not sure why, but I feel it makes a lot of sense to be able to...
### What version of `drizzle-orm` are you using? 0.30.6 ### What version of `drizzle-kit` are you using? 0.20.14 ### Describe the Bug Given the following enum definition: ```Ts export const...
### 📜 Description It bugs out when you try to post a LinkedIn post that contains an Image. I tried with png and jpg. ### 👟 Reproduction steps 1. Create...