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

Is it a great idea to start with Flutter for a complete newbie
I've been learning about computer science for the last 4 months finished some basics tutorials like CS50 and read (Head first Java book) and messed around with some Java code basics like (OOP, if statement, loops, etc), i have little knowledge now about how things work and how everything is connected to each other but never made a big project and i wanna specialize in a specific thing to go to advanced level.my priority is finding (the fastest way) to make some money as I am jobless now to help my family, whether it's a job or freelance idc, I'm giving it all my time now.I've been making my research about mobile dev and i found that there is 1. native development (ios or android) 2. cross platform development like (React or Flutter).i really wanna start with flutter as it's trend now and making a great progress in community, support and Github repositories and many people suggested it cause it will be for desktop and web also, but i read some people comments that it's new and newbies shouldn't start with it, and i should start with something old so if i get stuck with something in it, it will be easy to find support on stackoverflow and find ready-baked code or packages to help me.and if i start with android/java as i only know java, it will take me long time to start android with java then move to Kotlin as it's 1st language for android now and i read that android is hard to start with as its high level abstraction and its structure, and time is a main factor for me.so i wanna invest like one year in something, so from now if i start investing my time in flutter, is it a good idea?any tip or advice from experts to help me will be appreciated.

December 24, 2019 at 10:40PM by sasosense
https://ift.tt/34SLHmg
New post on /r/flutterdev subreddit:

Flutter plugin to load and cache network or firebase storage images with a retry mechanism if the download fails
https://ift.tt/2ZlAg5q

December 24, 2019 at 07:29PM by Asoseil
https://ift.tt/35Vdt2Y
New post on Flutter Dev Google group:

Flutter web - problems with WebView
Hi. (on first place, sorry if this post have english errors, because i don't speak english) I'm trying to set an advertisement on my web-app, but the WebView and others like this is not working; I need to set a Web page (on this case, an AD banner) in a specific size on screen, in a SizedBox.

December 25, 2019 at 02:54AM by Nicolas Souza
https://ift.tt/2rubaF8
New post on /r/flutterdev subreddit:

Is there any MVC type of code management guidelines for flutter development?
Hi,I am an angular 2+ and php developer who also develops hybrid applications professionally. I have been looking into native development and I zeroed in on Android+Kotlin. But someone pointed out to flutter and I started digging into it.I really like that Flutter is backed by Google but I struggle with the concept of spaghetti code because of declarative ui way to build an app. I saw google presentation videos and I nearly fainted with deep nested level of code specially for a complex ui design. Coming from MVC architecture, I am finding it difficult to grasp the concept of declarative ui.So, my question is: Is there a way to manage the code or has anyone developed guidelines for MVC in flutter? Or the developer landscape will move to declarative ui way going forward for good?

December 25, 2019 at 06:28AM by gaurav_ch
https://ift.tt/2SqiP28
New post on /r/flutterdev subreddit:

Created a simple Tic Tac Toe game using Flutter. Check it out
Hey people,
Merry Christmas!I sat and created a Tic Tac Toe game using Flutter. It will be great if you could comment down your thoughts and opinions.Project -> https://github.com/emilsharier/Tic-Tac-ToeThank you :)

December 25, 2019 at 09:08AM by eeelll414
https://ift.tt/2EPj5zP
New post on /r/flutterdev subreddit:

Wrapping text with a dash
Hi, Is there anyway to automatically wrap text with a dash? (-)Example:Not wrapped: https://imgur.com/a/H1PWj1MWrapped with dash: https://imgur.com/a/TCm8RFF

December 25, 2019 at 10:06AM by Heknon
https://ift.tt/2Zlx3Tu
New post on /r/flutterdev subreddit:

Access to infra-red sensor on flutter?
Is it possible to make api calls to infra-red sensors on android / iOS devices in general? and using flutter?

December 25, 2019 at 03:39PM by BarbDart
https://ift.tt/2sYrlLc
New post on Flutter Dev Google group:

GSoC and Flutter
Are there any open source organizations that use to built their mobile apps using flutter and listed in GSoC?

December 25, 2019 at 03:39PM by Viraj Danushka
https://ift.tt/35YRmc2
New post on /r/flutterdev subreddit:

Resolve local hostname
Hello all, I've been making a simple mqtt application for my raspberry pi running node-red and it's going pretty well.I have two mqtt brokers running locally and a remote broker. I can access the remote broker just fine but when I try to connect to the local mosquito broker running on pi through its hostname (raspberrypi.local) I'm getting error flutter os error: no address associated withhostname, errno = 7I've looked into this error and found out I may have to use something like mDns package. I'm not sure where to head next.The raspberry pi will be connected to existing WiFi and it may have different IPs every time it reconnects.

December 25, 2019 at 05:39PM by Deepu_
https://ift.tt/379o22G
New post on /r/flutterdev subreddit:

Getting input without textbox
Is there a way to get text input without actually having a text input with a listener?Basically I am using some android devices with barcode scanners. When you scan a barcode the numbers are sent through the device as typing. I need to grab that text and deal with it.My current hack:1) have text input on the page2) autofocus the text input so typing goes to it3) hide the keyboard4) capturing typing to the text input5) do a big song and dance to let the user type in the text input if they really want toI would rather skip steps 2 and 3 and 5... but to do it, I need to capture typing without an input selected

December 25, 2019 at 07:53PM by TunaBoo
https://ift.tt/2sjQ7FB
New post on /r/flutterdev subreddit:

ancestorInheritedElementForWidgetOfExactType is deprecated
After v1.12.1 ancestorInheritedElementForWidgetOfExactType is deprecated. We should use getElementForInheritedWidgetOfExactType now. How do I edit this BlocProvider?
import 'package:flutter/material.dart'; Type _typeOf<T>() => T; abstract class BlocBase { void dispose(); } class BlocProvider<T extends BlocBase> extends StatefulWidget { BlocProvider({ Key key, @required this.child, @required this.bloc, }) : super(key: key); final Widget child; final T bloc; @override _BlocProviderState<T> createState() => _BlocProviderState<T>(); static T of<T extends BlocBase>(BuildContext context) { final type = _typeOf<_BlocProviderInherited<T>>(); _BlocProviderInherited<T> provider = context.ancestorInheritedElementForWidgetOfExactType(type)?.widget; return provider?.bloc; } } class _BlocProviderState<T extends BlocBase> extends State<BlocProvider<T>> { @override void dispose() { widget.bloc?.dispose(); super.dispose(); } @override Widget build(BuildContext context) { return new _BlocProviderInherited<T>( bloc: widget.bloc, child: widget.child, ); } } class _BlocProviderInherited<T> extends InheritedWidget { _BlocProviderInherited({ Key key, @required Widget child, @required this.bloc, }) : super(key: key, child: child); final T bloc; @override bool updateShouldNotify(_BlocProviderInherited oldWidget) => false; } 


December 26, 2019 at 12:00AM by poq106
https://ift.tt/3635i4Q
New post on /r/flutterdev subreddit:

ZoomableTiltView is simple widget to add some juiciness to your app.
https://ift.tt/2SlMqtI

December 25, 2019 at 11:17PM by Elixane
https://ift.tt/2PUsDzO
New post on /r/flutterdev subreddit:

Are there an alternative to DynamicData in Flutter?
DynamicData is a Reactive collections based on Rx.NetDynamicData is really helpful when you need list filtering, grouping, etc without changing the source list. The closest I found in Flutter is MobX ObservableList.If you guys know the alternatives in Flutter (or on the other frontend framework for that matter) that would really much appreciatedThank you

December 26, 2019 at 04:15AM by 5yunus2efendi
https://ift.tt/2PX1Y5u
New post on Flutter Dev Google group:

Please help me with question posted on stackoverflow
Below is the link where I have posted my question https://ift.tt/2tU6lG5

December 26, 2019 at 07:34AM by mahantappa b k
https://ift.tt/39c57WL
New post on /r/flutterdev subreddit:

Android X incompatibility
Android X incompatibility error. I get this error quite often nowadays whenever i compile. I have set the android x variables specified in the gradle.properties file to true , no issue there. Any tips as to how to avoid it? I simply have to migrate my project to a new file in order to remove it rn and would like an alternative as this is tiresome

December 26, 2019 at 08:09AM by Grey-Winds
https://ift.tt/2ZuJc8H
New post on /r/flutterdev subreddit:

I wonder why Flutter team not starting a backend framework?
I know there is a lot of dart framework but none of them is supported by Google so they are not popular in the communityI wonder if we collect enough signatures and send it to Flutter team maybe they could consider making a backend framework for Flutter developersYou can sign here
https://www.ipetitions.com/petition/google-dart-backend-framework

December 26, 2019 at 08:05AM by amrenew
https://ift.tt/37agcFM