apoleo88

Results 30 comments of apoleo88

I got the same issue when I added this library. Any updates?

if instead of `getDuration()` you use its listener ``` player.onDurationChanged.listen((Duration d) { print('Max duration: $d'); setState(() => duration = d); }); ``` it works fine. From documentation of `onDurationChanged`: `This...

I am having the same performance issue with `SvgPicture.asset` I am using it on a scrollable ListView, 40 SVGs are displayed at a time (size 64x64). The page appears excessively...

I want to show them in a scrollable list. If I have to precache them all, I will encounter latency in the start and severe memory problems, with the risk...

Any update? I don't want to cover the bottom or top menu, so this is a huge bug for my design. Isn't it possible to make it come from the...

This is not a solution for the problem described

Thank you for the discussion, I think I need to give you more information: - The Database run on the Flutter App, it is updated regularly. - The first copy...

> You could open two databases at once using `ATTACH` and then copy the data over using nothing but sql. It's unlikely that moor will have builtin support for that,...

> > > Do you write data in your `onCreate` function? If not, you could just create another instance of your database class that uses a different database file. You...

I had the same issue. I use the encrypted version. ``` drift: ^1.7.0 sqlcipher_flutter_libs: ^0.5.0 ``` Added to a Table: ` DateTimeColumn get updated_at => dateTime().nullable().withDefault(currentDateAndTime)();` Migration: ` await m.addColumn(activityEntries,...