glanium

Results 12 issues of glanium

PhotoViewComputedScale now supports contained and covered value. Support values like BoxFit.fitWidth and BoxFit.fitHeight. Thx.

enhancement
Core: hard

I need CommandBarDropButton like DropDownButton. It is very hard to build UI with only simple CommandBarButton. WinUI' CommandBar supports such [functionaliy](https://learn.microsoft.com/en-us/windows/apps/design/controls/command-bar#menus-and-flyouts) Thx. for more flexibility, CommandBarFlyoutButton which flyouts arbitrary widgets....

enhancement

**Is your feature request related to a problem? Please describe.** Drift now supports in-memory/temporary DB but as standalone DB. I need to use in-memory/temporary DB as second DB(attached DB). **Describe...

enhancement

**Is your feature request related to a problem? Please describe.** I need to build SQL In clause like the following ` WHERE (FieldA, FieldB) IN (VALUES(?,?), (?,?), (?,?) .........(?,?)) `...

enhancement

I mean Response cancellation than Request cancellation. i.e. After received response, I wanna cancel response. following is usecase ```dart final response = await c.send(request); if (response.contentLength != null && response.contentLength!...

type-enhancement
package:cronet_http

There are Request and StreamedRequest in http package. What does streaming mean in the context of this http package? I think streaming means something like transferring bytes in chunks in...

type-bug
package:cronet_http

BaseResponse has isRedirect field which tells whether redirection happens or not. But theres no field which tell final url. when redirections happens. Add RedirectUri field to BaseResponse

type-enhancement
package:http

## Use case I'm trying to use ListTile widget but i found it lacks mouse hover effects and focus visual effects. This is not good for Destkop app. In material...

new widget

Java has canEncode method in [CharsetEncoder class](https://docs.oracle.com/javase%2F7%2Fdocs%2Fapi%2F%2F/java/nio/charset/CharsetEncoder.html#canEncode(java.lang.CharSequence)), Win32 has out lpUsedDefaultChar parameter in [WideCharToMultiByte function](https://learn.microsoft.com/en-us/windows/win32/api/stringapiset/nf-stringapiset-widechartomultibyte). I don't know about iOS. thx.

enhancement

SQLite3 has backup APIs. https://sqlite.org/backup.html if possible, please support it. and if possible, support backup for moor?? thx.