Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from FlutterDev:

🤩 Learn what's new in Flutter

Check out this #GoogleIO Keynote with @ZoeyFan723 and @csells to find out more about:

✌️ Flutter 2.2 release
🔼 Latest Updates to Dart and Flutter
🔧 Flutter DevTools
🌍 The ecosystem

… and more!

Watch 👉 https://t.co/SODp28PgLn pic.twitter.com/j4hE9cnLPf— Flutter (@FlutterDev) May 24, 2021

May 24, 2021 at 08:29PM
http://twitter.com/FlutterDev/status/1396896252365877255
New tweet from FlutterDev:

#GoogleIO Extended

The magic of I/O doesn’t end after the main event. Join other local Flutter developers to talk about your favorite announcements and all the cool new technologies.

Are you ready? 👉 https://t.co/cyomH78VSg pic.twitter.com/ZoSviEJVmU— Flutter (@FlutterDev) May 24, 2021

May 25, 2021
http://twitter.com/FlutterDev/status/1396949126122778626
New post on /r/flutterdev subreddit:

Conduit release meeting
The conduit team (previously aqueduct) is having a community meeting this weekend to discuss the release process for conduit and post release priorities.Conduit is a Dart base REST service with an integrated ORM and I think it's fair to say that it is the most advanced Dart Server framework available.As to the state of conduit.We are now code complete for the release.We have just finished automating the release process and are finalising a re-organisation of the conduit repo into a mono-repo to facility reliable releases.With the final release we believe that Conduit is ready for production release.If you want to get involved, join the discord channel at:https://discord.gg/ASK6vxr88fThe conduit project is hosted at:https://github.com/conduit-dart/conduitDocumentation is hosted on gitbooks:https://gitbook.theconduit.dev/Show your availability for the meeting at:https://www.when2meet.com/?11977265-oSgPaJoin the meeting:meet.google.com/xso-uhrh-fedRegards,BrettEdit: added meeting link

May 25, 2021 at 01:23AM by bsutto
https://ift.tt/3hS8QQ6
New post on Flutter Dev Google group:

Sliding footer with content in flutter
I wanted to know that how do I make the below page where the footer(Like, Comment, Share, Shave) remains in the bottom till the length of the content and when the content is over while sliding the footer(Like, Comment, Share, Shave) slides up with its own content. as shown in the below 2 images.

May 25, 2021 at 03:27AM by palak pandey
https://ift.tt/3hPmlQi
New post on Flutter Dev Google group:

deploying flutter web in production
Hello friends, Need a quick help with the following. I am in the process of developing a flutter web application. The frontend is obviously in flutter. The backend or the restful server is in flask-python. And the database is mongoDB. I was wondering what is the best approach to deploy the

May 25, 2021 at 06:43AM by vaibhav sultania
https://ift.tt/3oMYv9j
New post on Flutter Dev Google group:

Flutter Smart TV app
Hello, I am working on a Flutter app that supports smart Tv, I have had a challenge with the login page because it keeps losing focus once I navigate from text fields to button. This has lead the app to be rejected on the google play store severally due to D-pad issues. Similar issues: https://w

May 25, 2021 at 08:04AM by Prince Kelvin
https://ift.tt/34cv331
New post on /r/flutterdev subreddit:

Null Safety with Randal Schwartz - Flutter 101 Podcast
Listen to the episode here: https://flutter101.dev/episodes/null-safety-with-randal-schwartzFind out more about the podcast at flutter101.dev. Available on Apple Podcasts, Google Podcasts, Spotify, and more.​My guest today is Randal Schwartz. He is a Google Developer Expert on Flutter and Dart. He is also very active in the Perl community and he wrote multiple books on Perl, he was the host of FLOSS weekly, a podcast about Free Libre Open Source Software.In this episode, we focused on null safety with Dart. Dart 2.12 added support for null safety. When you opt into null safety, types in your code are non-nullable by default. This means that variables can't contain null unless you say they can. With null safety, your runtime null-dereference errors turn into edit-time analysis errors.We also talked about migrating our existing code to null safety, and the migrations tools that can help us make the migration process as seamless as possible.

May 25, 2021 at 08:06AM by serial_dev
https://ift.tt/3ujmU7M
New post on /r/flutterdev subreddit:

Flutter in Schools
We are excited to announce that Mark Mahoney will be on Allen's podcast show on May 26, 2021, 14:00-15:00 (GMT). Mark is the Professor of Computer Science at Carthage College, Illinois, United States, and… he is Allen’s professor back then! Join us live to see how the teacher-and-student combo shares their “code stories!”https://youtu.be/ic357f2KEyg

May 25, 2021 at 12:13PM by plangora
https://ift.tt/3oUzysH
New post on Flutter Dev Google group:

Adding documents with same ID to Firestore at the same time
Hello! I want to add 2 documents with the same ID to Firestore when doing the following: I want the *bold* one to have the same document ID as the non-bold one, since both are adding the same info to different places in Firestore. How could I do this? Thanks void _sendPost() async { FirebaseFi

May 25, 2021 at 02:16PM by Alvaro Gonzalez Rico
https://ift.tt/3oLv2Nc
New post on Flutter Dev Google group:

How to prevent app tampering in Flutter (removal of ads)?
I recently made an app and it had Admob ads integrated in it. After a few days as soon as the app had a few thousand downloads, someone modded the app and removed the admob ads and that app started getting shared. Admob revenue was the only source of income to keep that app alive as I am a

May 25, 2021 at 03:02PM by Priyanshu Singh
https://ift.tt/2Td4PLD
New post on /r/flutterdev subreddit:

Is the HTML renderer inferior to CanvasKit?
I struggled a lot with a recent production app experiencing issues including: - Text randomly changing spacing when scrolling - Things cut off at sides of their containers for no reason - Labels misaligned on charts - TextOverflow not working no matter what - scrollable views which are not loaded lazily being slow and choppySpent hours on hours debugging and wrapping things in never ending pyramids of Columns, Rows, Flexible, Expanded etc., which sometimes did the trick in the end, sometimes not. I was starting to think It was a mistake to invest time in Flutter in the first place.I was using the HTML renderer (switched from canvaskit because it doesn't show network images locally). Then I switched back to canvaskit and presto, 99% problems are just not there.Hence the question, is the html renderer generally worse/less reliable or I'm doing something wrong (maybe there are certain rules you need to know to use the latter)? Did others also encounter problems with it?

May 25, 2021 at 02:50PM by HeftyImplement
https://ift.tt/3vfa37P
New post on /r/flutterdev subreddit:

Adding documents with same ID to Firestore at the same time
I want to add 2 documents with the same ID to Firestore when doing the following (see code below). I want [2] to have the same document ID as [1], since both are adding the same info to different places in Firestore. Right now, [1] and [2] give me different document IDs. I want to see if it is possible for them to have the same ID. Preferably if [2] can have the same doc ID as [1]. How could I do this? Thanksvoid _sendPost() async {FirebaseFirestore.instance.collection('post').doc(docX).collection('posts').add({}) [1]FirebaseFirestore.instance.collection('users').doc(user.uid).collection('userPosts').add({}) [2]}

May 25, 2021 at 03:28PM by Alvaro-99
https://ift.tt/3flx6Zf
New post on /r/flutterdev subreddit:

Stream provider with rest api
Guy's anyone know how to fetch data list for API via stream provider or future provider. I use provider for my state management for a long time mainly in last 2 3 application but it's not give the live data until you not call it's again by user side so I do some research and found about stream provide. But I doesn't know how to use it's for API call I use several technice but nothing worked so anyone know how can fetch data or any article video

May 25, 2021 at 03:27PM by Prashant_4200
https://ift.tt/3i5db2z