Miguel Beltran

Results 236 comments of Miguel Beltran

Have you tried to store the file in a temporal path and then share that file?

Hi @jingzhanwu Could you post a link to a sample project that showcases the issue you have? I looked at the code you posted after copying to a project but...

You could define multiple Stores, then use two StoreProviders, like this: ```import 'package:flutter/material.dart'; import 'package:flutter_redux/flutter_redux.dart'; import 'package:redux/redux.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { final storeAppState =...

The best source I've found is @brianegan architecture samples like https://github.com/brianegan/flutter_architecture_samples/tree/master/redux

Hi. I use a very similar solution for a project and see nothing wrong with your proposal. For example, in my case, I have a list of messages on the...

@csells requested me to put here my findings. ### Setup flutter doctor ``` $ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel beta,...

I had the same problem as OP and found a solution. The issue is not in FlowLayout but in the LinearLayout. The only solution I found was to use`setBackgroundResource` instead...

Please use the Bug template to fill a bug report and include all the information in it

I mean, no. AlarmManager has a place (wanting to run a task at a precise time, e.g. an actual alarm) and WorkManager is more to schedule work in the background...