Emre ŞURK
Emre ŞURK
Having same issue.
Same here. Conflict happens when there are other views in the same cell and have multiple rows of tags.
Hi, Actually, you just pass the functions of the controller class to router, like: ```dart router.get('/books/', BooksController().readOne ); router.put('/books', BooksController().create ); router.delete('/books/', BooksController().delete ); ``` That works. You can just...
hi @jonasfj The context object of the router is immutable while using like router.get, it is mutable while using annotations?
Hi, We have middleware but the problem is they are here for the whole app. We need also route-based middleware. Middlewares should have the capability 1. to prevent a request...
I fixed this error but some other errors popped up: How I fixed this one: ``` fun getBinaryMessenger(context: Context?): BinaryMessenger { val messenger : BinaryMessenger = backgroundEngine!!.dartExecutor!!.binaryMessenger!! return messenger ?:...
Thank you for the great project but the migration mechanism is the heart of the ORMs. We need a reliable migration mechanism and the mechanism should avoid data loss in...
Still no solution.
> first run: 1.- `flutter pub add icons_launcher` 2.- edit your configurations (pubspec.yaml) `icons_launcher:` ` image_path: "assets/icon.png"` ` platforms:` ` android:` ` enable: true` ` ios:` ` enable: true` 3.-...