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

Handling both iOS/Android Firebase Messaging Payloads
I want to be able to handle iOS and Android notifications using Firebase Messaging.I followed a tutorial in which the person received notification payloads in this format on Android:notification:{ title: "title" , body: "body" } }However on iOS I am receiving a payload in this format:aps:{ alert:{ title: "title" , body: "body" } }What is the best way to handle this within Flutter when configuring firebase messaging like below?
_firebaseMessaging.configure( onMessage: (Map<String, dynamic> message) async { showDialog( context: context, builder: (context) => AlertDialog( content: ListTile( title: Text(message['aps']['alert']['title']), subtitle: Text(message['aps']['alert']['body']), ), actions: <Widget>[ FlatButton( child: Text("Dismiss"), onPressed: () => Navigator.of(context).pop(), ) ], ), ); }, 


May 07, 2020 at 08:50PM by tampacsthrowaway
https://ift.tt/2A3mpYR
New post on Flutter Dev Google group:

DataTable synced with firebase
How can I make a datatable if I have the DataRow labels stored in firebase? And how can I update it once I have a new DataRow label in firebase? Need urgent help! Thanks in advance for helping!

May 08, 2020 at 12:23AM by Jonas Riesen
https://ift.tt/3dqnN6f
New post on Flutter Dev Google group:

How to generate hive boxes?
Hi, How to generate hive database boxes as per user click event. Like user creating data table, in that adding hive box name, and also HiveFields String variable names. Here main thing I want to know, how to generate hive boxes on user click event by filling data form to generate data table.

May 08, 2020 at 12:50AM by Gulam Fahad Ahmed
https://ift.tt/35HE9Fd
New post on Flutter Dev Google group:

1.17 not working with some packages (Google FireStore)
——— These 2 work —— firebase_core: ^0.4.4+3 google_sign_in: ^4.4.4 ——— These 4 do not work (crashes Flutter) —— cloud_firestore: ^0.13.5 firebase_storage: ^3.1.5 firebase_core: ^0.4.4+3 firebase_admob: ^0.9.3+2 I've tried dozens of combinations, all of the above packages were

May 08, 2020 at 03:12AM by jerry hamby
https://ift.tt/3cgjKt1
New post on Flutter Dev Google group:

Flutter Plugin's 3rd party integration for code coverage, build passing, provider, gitter etc
I have developed Flutter Plugin for developers to help common feature implementation for any standard business application. Here is plugin reference links. *GitHub*: https://ift.tt/35IRm09 *Pub.dev*: https://ift.tt/2LcDuC9 My goal is to give 'all in one'

May 08, 2020 at 04:28AM by Vishal Patel
https://ift.tt/3chPpKE
New post on Flutter Dev Google group:

ORDER by recent to old
Hello guys, I have a list of images that i would like the pictures to show from new to old. I tries doing ".orderBy("timestamp"), where timestap is the time. It shows from old to new. Is there a way to make it so it shows from new to old? Please help! Thanks a lot. getImagesByFolderAndUserId(U

May 08, 2020 at 05:29AM by Mahmoud Alminawi
https://ift.tt/2WGh69q
New post on Flutter Dev Google group:

Need help in creating a Flutter Website using Flutter Sample code Gallery
Hi, Can anyone please guide me for my project, I want to create a Website using Flutter , So is it possible to use the Sample Code Gallery or any other provided by the Flutter team as a template to fast track the development time ? Kindly please with some documentation link or Video guide on

May 08, 2020 at 07:52AM by Yotta Bytes Solution
https://ift.tt/3djlIsW
New post on /r/flutterdev subreddit:

Wallsky. A wallpaper app made with Flutter. Browse images from a number of sources having awesome stock images namely, PEXELS, UNSPLASH, PIXABAY. Here, check it out on GitHub. If you like it please star and share the repository as it will motivate me to learn more and make more of such apps.
https://ift.tt/3dqNfbP

May 08, 2020 at 08:17AM by varamsky
https://ift.tt/2WCbEo7
New post on /r/flutterdev subreddit:

Flutter gallery site blank on firefox dev
Can anyone confirm this or am the only one. Flutter gallery site https://gallery.flutter.dev/ doesn't show any content except gray screen. It works fine on chromium browsers

May 08, 2020 at 08:54AM by SriB
https://ift.tt/2zfTe4x
New post on /r/flutterdev subreddit:

Looking for an hobbyist film photographer/android dev to help porting my lightmeter app to android (write me a message if you’re interested)
iOS app subreddit you can have a look at the wiki to get an idea on what the app does. I wanted to use flutter to do this but at the moment I don’t have much time, it’s a side project for now. I continuously get requests for an android version from people, that’s why I’m here.

May 08, 2020 at 10:29AM by uaiududis
https://ift.tt/3fxl7pd
New post on Flutter Dev Google group:

Unable to download Flutter(Help post)
The download link is not generating every time I trying to download it(marked in the screenshot). Any solution?

May 08, 2020 at 11:14AM by Tawhidur Noor Badhan
https://ift.tt/2SOLXjb
New post on /r/flutterdev subreddit:

I released a Flutter Library for Toast like Badge Message.
A flutter package (library) called `toast_badge` is live now.It can show info badge on any widget and can be called like Toast without context parameter from anywhere in the app.​To use it, wrap your widget inside ToastBadgea. Just Wrap any Widget with ToastBadge() like thischild: ToastBadge(child: SettingPage(),),​b. You can also use the extension method .enableBadge()on any Widget:child: SettingPage().enableBadge(),Finally, call ToastBadge.show() from anywhere in the app.ToastBadge.show("Hello Toast");​This was released as my day 33 of 100 Days of Flutter.You can find daily post on this thread :https://twitter.com/erluxman/status/1246608678486065152See the library here :https://github.com/erluxman/toast_badge#day33 #100DaysofFlutter #flutterdev

May 08, 2020 at 11:04AM by erluxman
https://ift.tt/2zkAvVs
New post on Flutter Dev Google group:

center a widget specific for android devicec?
hi guys . i need to move my text inside the appbar specific for android . the position on ios is good but on android its to close to the left. does anyone know how to? thanks in advenced appBar: AppBar( title: Text( 'My Logo ', style: GoogleFonts.handlee( color: Colors.white,

May 08, 2020 at 12:22PM by Error Place
https://ift.tt/3dwpuPP