Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

how to reload current page (chat app) after call method that insert data in database
hi
help please
when i press button
i want to reload current page (chat app) after call method that insert data in database () . i try to use this code (it reloal the page but without inserted data) :```
onPressed: () {
insertData(_value, _text);
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => ExScreen(ExScreen.id),
),
);
}
```

January 04, 2020 at 07:48AM by najidelmon
https://ift.tt/2FisY9p
New post on Flutter Dev Google group:

Need help
Hello all developers I want create a build archive for iOS but I get error "can not Module 'firebase_analytics' not found" App is working on emulator and device and release iOS is okay but can not create a build archive for iOS. flutter build ios --release Building net.sataspes.spbudget for

January 04, 2020 at 08:24AM by Mohammad Bazrafkan
https://ift.tt/2SRP8HK
New post on Flutter Dev Google group:

CodeNBuild - 30 hr hackathon
Code-N-Build *who let the codes out,* Date- 25th Jan - 26th Jan 2020 Venue- JECRC University, Jaipur
New post on /r/flutterdev subreddit:

Snapshot query firestore in flutter
When I use a snapshot query which I know it's using the cache do I still be billed each document that the snapshot return even its in the cache?

January 04, 2020 at 02:17PM by ccfiel
https://ift.tt/2MUxbEl
New post on /r/flutterdev subreddit:

Published my first plugin. A plugin that builds on Firebase Auth to provide support for oauth sign in flows with firebase. Which means it supports Sign in by apple on ios, Android and Web.
https://ift.tt/2ZNyESn

January 04, 2020 at 02:55PM by amrfarid140
https://ift.tt/35r97iW
New post on /r/flutterdev subreddit:

Check out Dashbook, an equivalent of StorybookJs for Flutter
Hello everyone, I am developing a little package to work as an equivalent of the StorybookJs for Flutter.It is not complete, but has some good features already, I plan on continuing to improve this, and add more features in the future.Hopefully this can be useful for more people, and if you have any suggestions let me know.https://github.com/erickzanardo/dashbook

January 04, 2020 at 04:05PM by erickzanardo
https://ift.tt/37GUxFL
New post on /r/flutterdev subreddit:

My very first Flutter UI package. google_nav_bar
https://ift.tt/35pKIu9

January 04, 2020 at 05:17PM by sooxiaotong
https://ift.tt/2ZPf1cB
New post on Flutter Dev Google group:

Rendering a subtree to an offscreen framebuffer?
Hi all, I've been exploring Flutter a bit in the context of building 3D applications using it. From what I can tell it's easy to embed a 3D engine into a Flutter view using the External Texture functionality. Is there any way to go in the other direction? E.g. render a subtree into a texture

January 04, 2020 at 08:31PM by Josh Faust
https://ift.tt/35kAb3v
New post on /r/flutterdev subreddit:

Flutter Web: Firestore CRUD
https://ift.tt/2MQEs8n

January 04, 2020 at 11:57PM by Cymarxcr
https://ift.tt/2ttJNvp
New post on /r/flutterdev subreddit:

Updating content of static app periodically
I am hoping y'all can help me out. I am building an app that will be very content heavy. It would behave very much like a static application where all of the content comes baked in (text, images, map tiles, etc). But this is obviously not really scalable since I would need to release a new version of the app each time I update its content.Instead, upon opening the app, I would want the app to check a DB to see if any changes to content were made, and then go get those changes and update a local cache or data structure used by the app. Again, this would include pictures, text, and potentially other information.I would want to download all of the data upon first opening the app when it is first installed, but after that, only download changed data. I have looked into Firebase Firestore and Realtime DBs, which allow offline functionality. Realtime allows me to subscribe to various parts of the data tree and update when necessary, which seems great, but content for the app may only need to be added to or updated a few times a year.At the end of the day, my real question is what is the standard way to download a relatively large amount of data to an app, cache it so it does not need internet connectivity, and then maintain it as data is updated (by me on the backend)?Thank you!

January 05, 2020 at 01:22AM by FeelTheDataBeTheData
https://ift.tt/2FnNhm2
New post on /r/flutterdev subreddit:

Scroll Problems, Please Help
I have a ListView widget, which scrolls vertically, inside this ListView, I have a Column widget, with a number of children, there's some Text widgets, Asset images and a google map inside a Container widget, it is this map that is giving me problems, see, when I try to interact with the map, i.e scroll, to move from one location to the other, the ListView widget is the one that is scrolling instead of the map, is it possible to scroll on the map, and still be able to scroll the ListView?

January 05, 2020 at 12:13PM by A-PRYME
https://ift.tt/39IN1vw
New post on /r/flutterdev subreddit:

FlutterForce β€” Week 59
https://ift.tt/2Fq0v1i

January 05, 2020 at 12:05PM by flutterist
https://ift.tt/2QPVogb
New post on Flutter Dev Google group:

Pod Install Error
while running my application on IOS i got the following error: Error running pod install Error launching application on iPhone 11 Pro Max.

January 05, 2020 at 06:47PM by Kamran Ali
https://ift.tt/2Qoa9rN
New post on /r/flutterdev subreddit:

Gif won't load
When i try to load a gif using Image.asset(), I get this error and it is driving me nuts. The error I get is
"Unable to load asset: assets/gifs/bus_animated.gif"Flutter doctor is all good. The assets entry in pubspec.yaml is correctly indented as shown below. No errors when loading png/jpg images./// pubspec.yaml
flutter: assets: - assets/gifs 
/// widget build method
Widget build(BuildContext context) { return Scaffold( body: Center( child: Image.asset( 'assets/gifs/bus_animated.gif' ) ), ); } 


January 05, 2020 at 07:54PM by Corthza
https://ift.tt/2QrnMq6
New post on Flutter Dev Google group:

Flutter issues with KitKat
After upgrading flutter to v1.12.13+hotfix.5. The projects which I create it can't be run on KitKat in android. If anyone facing this issue.. So for the solution I get back to older version of flutter.. it's working fine ..

January 05, 2020 at 09:01PM by Ravindrabhai Vala
https://ift.tt/36sTTLA