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

Flutter Team: We need more posts about the ramifications of null-safety
As a developer who is shipping apps, and fine using null as-is, I could really use more context on how this affects me and what the future looks like. Some questions I have:Will all my apps suddenly stop working on some version of Stable one day?Does this mean I will be locked out of maintenance updates (like to support a new iOS version) unless I convert existing apps to Null Safety? This would be bad for someone with multiple apps in the store.Is there any way to build desktop apps now, without using null-safety, it seems when I used master it's forcing this on?Does Flutter Team plan on maintaining some sort of LTS (Long Term Support) non-nullsafe branch, where legacy apps can be compiled while still getting critical fixes for OS level features?Most of the existing communication has been from the perspective of touting this new feature, and I agree it's a cool feature, but from a pragmatic standpoint I just need to know how much work this is going to create for me in the medium term so I can try and plan around it. I don't care to learn about null-safety right now, but I do need to know its ramifications on my schedule.Most especially, if there will be some future drop-dead date where all apps on Stable, must use null-safety, please make that explicit because it could be a major headache if we're not expecting it and suddenly can not do maintenance updates without major refactors.

November 26, 2020 at 11:23PM by esDotDev
https://ift.tt/3nYsr0x
New post on Flutter Dev Google group:

Align Widget for a column
Hi Flutter community, I have a column consisting of 3 buttons placed vertically. I want to place this column at the bottomcenter part of the screen. I'm trying the Align widget, but it's not working with my column! If I just have one button inside my Align widget, it works, but when I try

November 27, 2020 at 01:58AM by Andrew Villegas
https://ift.tt/3o1oBnC
New post on /r/flutterdev subreddit:

Desktop environment in Flutter?
Recently, I saw this post in r/ReactJS https://www.reddit.com/r/reactjs/comments/k1l7p8/made_my_personal_site_into_a_desktop_environment/My first thought was about doing this in Flutter, so I Googled it and came across this post https://www.reddit.com/r/FlutterDev/comments/a27ly0/desktop_environment_in_flutter/But since then, Canonical has decided to add first party support for Flutter with Ubuntu, so I was wondering is, has anything changed?I remember something that might be relevant: I tried to make a webview in a sliver list in Flutter, and it would be very slow because every time the PlatformView moved in Flutter, it was rebuilt, so I'd imagine if that's still the case the PlatformViews of the windows for the DE would rebuild every time as of now, too. I didn't think this would apply to React, because when it's running everything is a native widget/view/component.And, if nothing has changed, will something make creating a DE in Flutter practical?

November 27, 2020 at 03:31AM by dan-danny-daniel
https://ift.tt/3larErQ
New post on /r/flutterdev subreddit:

[Bridged] Design to flutter (Totally usable code) within a second, in single click
It's been almost 2 month we've start this awesome open project called bridged. bridged assistant is a figma plugin that converts your design to flutter code, and launch automatically builds it on web, so you can view your design as a running application within 5 seconds.Please take a deeper look, until we fully release it, I'm sharing it on reddit for yours' exclusive access.star this project here on github - https://github.com/bridgedxyz/assistant

November 27, 2020 at 03:31AM by softmarshmallow
https://ift.tt/3q58kzO
New post on Flutter Dev Google group:

Streaming data on home page
I want to show streaming data on the homepage from my ASYNC FUNCTION..Attached is the main class function image (mainclass). Also attached async function from where i need to pass the streaming data to the home page. PLEASE SUGGEST HOW TO INTEGRATE THESE TWO I AM GETTING FUTURE TYPE ISSUES WHILE

November 27, 2020 at 04:42AM by sona
https://ift.tt/3fQsJUJ
New post on /r/flutterdev subreddit:

Explaining Flutter Widget Column
Flutter Widget: Column https://www.instagram.com/p/CIFQev8gnX1/?igshid=awbh646m0w2q

November 27, 2020 at 06:18AM by Thori_Manoj
https://ift.tt/39lwCQi
New post on /r/flutterdev subreddit:

Dependency injection?
Flutter devs, what DI library are you using? Is there something "standard" like Dagger is for native android? I've stumbled upon some package from google (inject.dart) but from what it seems it's not actively maintained.

November 27, 2020 at 08:18AM by Doctor_Boom_is_back
https://ift.tt/37bHNZ5
New post on /r/flutterdev subreddit:

Reflectly Ui with animation
An onboarding UI of the popular flutter app Reflectly with animation.source code: https://github.com/shehriyarmalik/ReflectlyUI

November 27, 2020 at 12:25PM by shehriyar_
https://ift.tt/3lgSG0p
New post on /r/flutterdev subreddit:

Riverpod and bloc
Hi there flutter gurus. I've been learning to use riverpod as my main state management tool in an app I'm working on. I'm confused. I've been wondering if the application is still considered as following bloc pattern when using statenotifiers as the main business logic handlers?Also is there a resource you found on how to combine traditional blocs with riverpod? I don't want to use stream builders to listen to the blocs streams. Is it right to have a stream as a variable in my state's model?I have a million questions concerning riverpod and clean architecture with it. All insight and resources are appreciated.

November 27, 2020 at 02:07PM by AbstractOne444
https://ift.tt/2VaOOU9
New post on /r/flutterdev subreddit:

I'm an Android Developer and I need to learn Flutter.
Hey guys!I work as an Native Android Developer and the project that i'm currenlty working on is ending soon. Thing is that my next project will use Flutter, so i ll use these last months of development to learn flutter.How difficult is to learn Flutter for an Android Developer?And which are the must to have dependencies to work with it? Like in Android: Dagger 2(DI), RXJava (Reactive Programming), Retrofit (Https calls), Mockito (Unit Test), etc.Edit: Also, which development pattern do you use? For Example on Android i use MVVM but maybe for flutter there is another standar way to do it.Thanks!!!

November 27, 2020 at 02:04PM by PegsTheEmitter
https://ift.tt/2JcZXkJ
New post on /r/flutterdev subreddit:

Campaign tracking for a Flutter application (iOS & Android)
Hi everyone!As our application went live two weeks ago and we have fixed the first bugs, we wanted to start advertising in the next weeks.However, we just figured out (it is our first app) that neither the Appstore nor the Play console can provide us download statistics about a specific ad campaign. Thereby we looked at the old "utm_source"/referrer way.On Android, the referrer URL parameter seems to be the thing we are looking for but I cannot find a way to retrieve it on app first install.On iOS it is even worse, I cannot even find an URL parameter that allow to pass things like referrer...​And for both platform, the day I will have developed this features, how is it possible to test it?Thus, I wanted to know your opinion about this Campaign tracking topic and learn how you are all doing!​Thanks a lot in advanceFlorian

November 27, 2020 at 02:30PM by flogaribal
https://ift.tt/2JnwR1Z
New post on /r/flutterdev subreddit:

Everything you want to know about get_it and get_it_mixin, but didn't dare to ask ;-)
Hi friends,as I'm the author of these both packages I thought maybe a Q&A post might be helpful for some of you.If you haven't heard about the packages you find them here:https://pub.dev/packages/get_ithttps://pub.dev/packages/get_it_mixinSo ask me anything I will try to answer as good as I can.

November 27, 2020 at 04:35PM by escamoteur
https://ift.tt/3nWOKUk
New post on Flutter Dev Google group:

Flutter app for IOS ok run from flutter run -release, OK when build and Install using XCODE but FAIL when open to run.
*My environment* % flutter doctor --verbose [✓] Flutter (Channel stable, 1.22.4, on macOS 11.0.1 20B50 darwin-x64, locale en-GB) • Flutter version 1.22.4 at /Users/mobdevs/Development/flutter • Framework revision 1aafb3a8b9 (2 weeks ago), 2020-11-13 09:59:28 -0800 • Engine

November 27, 2020 at 05:56PM by AZAMAN SULEIMAN
https://ift.tt/39jrITB
New post on /r/flutterdev subreddit:

Any reason why official plugins dont get much love ?
As title says, is there any reason why the Flutter team cares little to none about pull-requests made by the community, or even take care by them selves ?They call them official first-party plugins but just take a look at the webview status...https://github.com/flutter/plugins/pulls?page=1&q=is%3Apr+is%3Aopen+webviewAnd we all know that webview can be useful for a lot of developers out there.I love flutter and i use it for work, but honestly i dont understand what is happening with first-party plugins, they seems to be left there, to concentrate most on tools and platforms.

November 27, 2020 at 04:58PM by nicolasvac
https://ift.tt/2JokYJ6
New post on Flutter Dev Google group:

Flutter Toggle
This code is for a map based app .I want to toggle the icons .How to wrap the toggle function in this? Can you please help? Positioned( top:130, right:20, child: new IconButton( icon: new Container( height: 50.0, width: 50.0, decoration: new

November 27, 2020 at 07:16PM by sona
https://ift.tt/33pNDES