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

BLoC for abstracting bluetooth package in flutter
I am trying to abstract the flutter_blue package to use in my app, so I hope anyone could help me with this , so I am using bloc pattern , i am trying to use it with my bloc pattern​

April 20, 2021 at 06:53PM by AhmedLight
https://ift.tt/3n1hjRu
New post on /r/flutterdev subreddit:

What if I do not await a function?
Hi Everyone!​In my app some Firebase analytics event are lost. I find that I am not use await. For example instead of doing like in example:await widget.analytics.setCurrentScreen(https://pub.dev/packages/firebase_analytics/example​I am instead just do widget.analytics.setCurrentScreen(​Is important to await this type of call?​Thanks for help!

April 20, 2021 at 07:40PM by Flutter_Dev
https://ift.tt/3x56oed
New post on /r/flutterdev subreddit:

Flutter web the new react ?
Do you think that flutter web since it is no longer in beta will become an sdk / framework that will "compete" with frameworks known as react or angular?

April 20, 2021 at 08:31PM by snowy-27
https://ift.tt/3efp16E
New post on /r/flutterdev subreddit:

Do all Flutter Apps look similar?
I'm considering using Flutter for a personal project, but I'm getting major Bootstrap vibes. I can see the benefit of having quick access to pre-built styled components. but worry that I will be disappointed with the overall look.

April 20, 2021 at 11:03PM by johnnyashes
https://ift.tt/3n3sysu
New post on /r/flutterdev subreddit:

print first monday of every week of current month Flutter/Dart
I have a calendar in my Flutter App and I need to print a list of the weeks in the current month. But rather than starting on the 1st day of each month, it needs to start with the first Monday of the month (e.g. 05 April 2021 as the first Monday of April 2021). Then I need to print out the following weeks in that month, again starting from Monday. This includes the days of the next month that the final week of the current month follows on from (e.g. 26 April 2021 - 02 May 2021). It should print like this:​05 Apr - 11 Apr,12 Apr - 18 Apr,19 Apr - 25 Apr,26 Apr - 02 May,​https://stackoverflow.com/questions/67183678/print-first-monday-of-every-week-of-current-month-flutter-dart

April 20, 2021 at 10:48PM by ScrabbleKnight
https://ift.tt/3eebADQ
New post on /r/flutterdev subreddit:

My first plugin: nakama_flutter
Dart client for Nakama server.Nakama is an open-source server designed to power modern games and apps. Features include user accounts, chat, social, matchmaker, realtime multiplayer, and much more.This is the repository: https://github.com/Allan-Nava/nakama-flutter

April 20, 2021 at 10:35PM by allan_nava
https://ift.tt/3n5JezD
New post on Flutter Dev Google group:

Flutter Demo App with Null Safety
Out of curiosity I ran the Flutter demo app after 2.12. I am pretty sure it built without errors the first time I tried since the app worked fine on the emulator. However when I tried to build a day later I get - *lib/main.dart:36:19: Error: The parameter 'key' can't have a value of 'null'

April 21, 2021 at 04:05AM by Paul Snyder
https://ift.tt/3n6s3hs
New post on /r/flutterdev subreddit:

Flutter With NodeJS, Express & MongoDB
Get started with integrating flutter with nodeJS. It is essential for every dev to use flutter with other backend operators rather than firebase. And node is optimal for having flutter and its custom backend.In the following series of Flutter with custom backend learn about techstack :🛑 Flutter🛑 Node🛑 Express JS🛑 MongoDB🛑 Mongoose🛑 HerokuBuild a complete todo app from scratch having backend of Node, Flutter, Express and MongoDB!🎥 https://youtube.com/playlist?list=PLRT5VDuA0QGX9d3vi_lk2TAkaLhfykd9vTake a look over the playlist. You are gonna love it alot. If you find this series helpful, Please Subscribe.(Upvote so max people will be helped along🌟)

April 21, 2021 at 04:58AM by realappdev
https://ift.tt/3uYHfQu
New post on /r/flutterdev subreddit:

Using the browser's back button with named routes
The company is building an app that caters both mobile and web. Routing works fine using named routes. But our QA filed a bug where if you go to a certain screen using the web version, and press the browser's back button afterwards, it will not go back. Expected behavior should be is let's say you go to screen 2 from screen 1, if you press the back button, it should go back to screen 1.I've tried using ` WillPopScope` but not really working. Maybe because I'm using Navigator.pushNamed(namedRoute) and not Navigator.push.Any advice?

April 21, 2021 at 08:00AM by reddit04029
https://ift.tt/3dxL0X7
New post on /r/flutterdev subreddit:

How to send emails in Flutter using SendGrid API?
Recently, working on this project I wanted to send out order confirmation emails automatically once the user makes a successful purchase.So, I used the SendGrid API that lets you send 100 emails/day forever for free.In video I show how to integrate it with Firebase 'Trigger Email' extension.https://youtu.be/NFPdeVIMBFo

April 21, 2021 at 07:13AM by adityathakurxd
https://ift.tt/3syYfep
New post on Flutter Dev Google group:

How open a new window on the desktop?
How open a new window on the desktop?

April 21, 2021 at 09:49AM by 橙果
https://ift.tt/3tBG1ug
New post on /r/flutterdev subreddit:

Buying old iPhone for testing, which minimum model?
Hey guys, I'm thinking of buying a used iPhone for about $100/150 for testing my apps. I know I can use the emulator but my projects are highly focused on computer vision thus I would need access to a live camera to record in real time and take pictures, and maybe even streaming my drone video.I can see a lot of iPhone 6(S), SE and some iPhone 7 for sale in my price range. Any things to consider before purchasing a certain model? E.g. does storage matter much for testing, what about camera features (missing), being able to run latest OS smoothly for the foreseeable future etc...

April 21, 2021 at 11:38AM by Spotums
https://ift.tt/3at40nM
New post on Flutter Dev Google group:

How to pass data from one class to another?
How to pass myLocation.latitude of class SelectonMap to textfield of FormPage class SelectOnMap extends StatefulWidget { static final String pageName = "selectonmappage"; Position currentposition; SelectOnMap(this.currentposition); @override State