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

New Flutter App - Memory Game
Hello Everyone,I made a Memory Game with Flutter.PlayStore: https://play.google.com/store/apps/details?id=com.blackhole.memoryGitHub: https://github.com/imayush-chauhan/Memory-Game​Beautiful UI/UX, Animation, Designs.Improve your focus, attention, concentration, reflexes, speed of thinking, logic, and much more. Playing memory games is the best way to exercise your brain and keep your brain fit.

April 06, 2021 at 11:59AM by AyushYo
https://ift.tt/31PxkA9
New post on /r/flutterdev subreddit:

android-capture: zero-friction video+screenshot capture for Android app developers
https://ift.tt/3cSZIHR

April 06, 2021 at 11:30AM by ds300
https://ift.tt/3sW7C8T
New post on /r/flutterdev subreddit:

Dependencies
The more libraries I add to a project the more incompatibilities that are thrown up by pub get and the more I have to downleveling packages to try and find some set that works together.There must be a better way to do this. Why isn't there a tool I can throw my pubspec.yaml at, maybe indicating the minimum levels I need for some packages to get the features I need, and it will produce a working set?Or am I going about this all wrong? I've tried using "any", but pub get still gets all pissy with me.

April 06, 2021 at 12:48PM by IanWorthington
https://ift.tt/3sTbGqI
New post on /r/flutterdev subreddit:

Is Hackintosh as reliable as OSX (Macs) for compiling/running/simulating Flutter apps?
Or is a mac required for useful testing?

April 06, 2021 at 01:45PM by Professor_Dr_Dr
https://ift.tt/39LoN5H
New post on Flutter Dev Google group:

Getting document from Firestore only 1 time
Hello! I'm trying to get the 'username' of the current user from the *users* database on Firestore. I only need to get it once (NO need for streambuilder, futurebuilder, etc). I only need the 'username' to make it appear on the UI 1 time and it will not change depending on the activity, meaning

April 06, 2021 at 03:45PM by Alvaro Gonzalez Rico
https://ift.tt/3cUVyzj
New post on /r/flutterdev subreddit:

How do you prefer to learn Flutter (or any other language)?
Hi, I was thinking of teaching people something about Flutter. I'm not sure what way would be the best though. For example, a programming course, a YouTube channel, an interactive site, there are so much options! So, before I do start anything, I want to know if you have any preferred way to learn. It does not have to be conventional methods of learning (for example: through YouTube), but it could be whatever you like. What do you prefer or would like to see to learn more about Flutter?

April 06, 2021 at 04:02PM by MocroBorsato_
https://ift.tt/3wzjwYw
New tweet from FlutterDev:

🔥 Hot Reload 💙

Hot Reload is great.... when it works. But sometimes, you change some code and nothing happens? In this first #DecodingFlutter episode, learn more about how hot reload works, and when a hot restart is necessary instead.

Watch now 📺https://t.co/CEDIWfJ19g pic.twitter.com/redKYLwOEm— Flutter (@FlutterDev) April 6, 2021

April 06, 2021 at 07:35PM
http://twitter.com/FlutterDev/status/1379488053841047556
New post on Flutter Dev Google group:

Access data from Apple HealthKit
Hello, as part of my school year, I would like to develop a mobile health application and I need to have access to the health data available in HealthKIT. Thank you to anyone who can help me

April 06, 2021 at 07:39PM by John Lamien
https://ift.tt/324RmXH
New post on Flutter Dev Google group:

publishing App
After publishing my app into google play store. I did downloaded and installed the app through that; however, the camera, and storing a file in the internal memory did not function ??!! However, if I do install the app into my phone through Android Studio, it works fine.

April 06, 2021 at 09:43PM by Jassem Alhashim
https://ift.tt/3fLjbMD
New post on /r/flutterdev subreddit:

[N] Flutter Development Opportunities
Hellooo everyone, I wanted to share with you these amazing opportunities for Flutter Development in Egypt <3Flutter Development Instructorhttps://aiesec.org/opportunity/global-volunteer/1272788Flutter Development Traininghttps://aiesec.org/opportunity/global-volunteer/1272793

April 06, 2021 at 10:09PM by Omar_A996
https://ift.tt/3sWK6sB
New post on /r/flutterdev subreddit:

Is it possible to make a Google Calendar-like app in Flutter?
I mean, I think it's possible, but is it wise to try it?I've been trying for a week to make basic functionalities for such app and failed. It looks like flutter doesn't support core features necessary to build a calendar.For example, the only horizontal/vertical scroll I found was InteractiveViewer, and I can't detect a vertical scale with it. Also, transforming it in a infinite scroll manually doesn't feel right. Besides that, to make a horizontal line in the screen, I need to create a container with 1 pixel of height. To me, all that seems to be lots of "work arounds" instead of things I really supposed to be doing.I love flutter and really wanted to make a google calendar-like app with it. But all that is making me feel insecure about the project. Even if I manage to make the app work, it may be costly performance wise, making it unusable.What you guys think? Should I dive in or put the project aside?(PS.: I know there is some calendar packages, but I think they are pretty basic. They are cool if you want add a calendar to your app. But if the core business of your app is being a calendar, I think these packages are not enough).

April 06, 2021 at 09:39PM by werexzenok
https://ift.tt/3fMajGs
New post on /r/flutterdev subreddit:

Flutter BLE: -Scanning peripherals (BLE Devices), -Connecting to peripherals -Discovering services & characteristics
https://ift.tt/3hRFNtR

April 06, 2021 at 09:23PM by ALOKAMAR123
https://ift.tt/3sXUBvA
New post on /r/flutterdev subreddit:

Daily Flutter: BlurHash package.
https://imgur.com/a/CN7TvzR

April 06, 2021 at 10:38PM by ConfidentRoberto
https://ift.tt/3fNUTla
New post on Flutter Dev Google group:

Animated Container
I am trying to animate my app so when I scroll up on one list it closes one of my containers (my horizontal list). The way I had my old code I would always get an error because the text would try to squeeze in the card causing overflow when animating and closing. I am trying to use a fitted box

April 07, 2021 at 01:39AM by Mark Valeriani
https://ift.tt/3wxEWVX
New post on /r/flutterdev subreddit:

How to properly code share between mobile and web?
I'm making an app mainly for mobile but we want to deploy on web too, I managed to run the app on mobile, it works responsibly, but I want to change positions of some components on web (display tabbar at left instead bottom, maybe small color changes etc).
I didn't understad how flutter gallery is doing it https://gallery.flutter.dev/#/ it has major differences with mobile app, I think it can't be the same code (but same widgets), should I create new dart files for web and share widgets?
Whats the best practice? Please point me to the right direction

April 07, 2021 at 02:07AM by emroo07
https://ift.tt/3fSk7Pd