Rúben Ferreira

Results 21 issues of Rúben Ferreira

Running flutter 3.0.1. When `send()` is called, on older Android APIs

## Use case Currently the only way to load a html string in webview_flutter is to parse html to a URI using the following method `Uri.dataFromString()`. This seems a bit...

plugin
p: first party
p: webview
proposal
passed first triage
P5

**Which API doesn't behave as documented, and how does it misbehave?** Calling `.setAudioSource` with `preload: false` throws `PlatformException`. However in the docs only states: ``` /// When [preload] is `true`,...

bug
1 backlog

When transitioning from other programming languages to Dart, I occasionally find myself in a situation where I'd like to define an abstract class with hidden implementation methods. These methods are...

request

# Environment Knex version: ^0.95.12 Database + version: Mysql 8.0.26 OS: Windows 10 @lorefnon # Bug 1. Explain what kind of behaviour you are getting and how you think it...

Currently we can't set a constraint (Unique, FK, etc...) as `[DEFERRABLE | NOT DEFERRABLE] [INITIALLY DEFERRED | INITIALLY IMMEDIATE]` on `ALTER TABLE` nor `CREATE TABLE`. Example: ```sql ALTER TABLE tablename...

enhancement
good first issue
api
greenlit

**Description** Currently is not possible to access routing parameters on middlewares. Would be nice in cases where we have nested routing parameters and have different logic dependent on that parameter...

feature

**Description** The current order of dependency injection, where dependencies are injected from bottom to top, feels unnatural and counterintuitive. If there is another pattern to prevent this I think it...

feature
refactor
p1
product: dart frog

**Description** With `Route Groups` it would be possible to prevent folders from being included in the route's URL path. This feature would be useful for various use cases: - Enable...

feature
p2

Look at the following code: ```dart CameraAwesomeBuilder.previewOnly( onImageForAnalysis: (img) => _processImageBarcode(img), imageAnalysisConfig: AnalysisConfig( androidOptions: const AndroidAnalysisOptions.nv21( width: 1024, ), cupertinoOptions: const CupertinoAnalysisOptions.bgra8888(), maxFramesPerSecond: 5, ), builder: (cameraState, previewSize, previewRect) =>...

enhancement