Flutter Heroes
25.6K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: IntelliJ Idea or Android Studio? Which is better and why?
No text found

Submitted January 25, 2018 at 05:28PM by johnwayne2413
via reddit http://ift.tt/2naJShr
GGroup: Incompatible change in InputDecorator
Pull requests #13734 and #14177 included incompatible changes that had to do with explicitly hiding the InputDecorator's border. Before #13734 the border was hidden if *hideDivider: true *was

Submitted January 25, 2018 at 10:17PM by hansmuller
via Flutter Dev http://ift.tt/2BtuGAt
GGroup: Transition absolute Positioned Containers inside a Stack
Hello, I have a question about Flutter and animation. I have a list of absolute Positioned Containers inside a Stack: child: new Container( // grey box child: new Stack( children: items .map( (item) => new Positioned( // red box

Submitted January 25, 2018 at 10:25PM by Taco Perquin
via Flutter Dev http://ift.tt/2nb3LoR
GGroup: Firebase/Flutter/Android
Hey, I'm building an app in Android Studio using Firebase and while setting up authentication and saving data is simple, retrieving and displaying the data in the UI seems to present several challenges. While Firebase appears to have about 3 different approaches for implementing data into

Submitted January 25, 2018 at 10:25PM by Paul Trichon
via Flutter Dev http://ift.tt/2BsTubS
Reddit: Rental Ninja - a rental app with allegedly 70% code sharing between the web and Flutter mobile clients (Android & iOS)
http://ift.tt/2FgRyW6

Submitted January 26, 2018 at 12:09AM by roughike
via reddit http://ift.tt/2DJTGJ5
Reddit: 3 new Flutter plugins: lamp (flashlight), screen (brightness, keep awake) & vibrate
screen: Plugin to manage the device's screen.vibrate: Plugin to vibrate the device.lamp: Plugin to access the device's lamp/torch.

Submitted January 26, 2018 at 12:51AM by KingBaal
via reddit http://ift.tt/2ndjYtD
GGroup: Is it feasible to keep the hot reload feature in release mode?
My company is adopting the React Native and our App's DAU (Daily Active Users) is over 150 million. However we want to find an ideal substitution because of its BSD+Patents license risk. We did some research on Flutter. It is a candidate solution, but it seems lack of an important feature

Submitted January 26, 2018 at 07:14AM by Robin Kam
via Flutter Dev http://ift.tt/2BsO5Se
GGroup: How to animate a view from one view bounds to other view bounds
Hey Guys ! I am new to flutter and i have a question on how to implement a custom animation I need a custom tabbar where the indicator is behind the active tab. once you click another tab the indicator needs to move to the new tab position and also animate its size to fit the tabs bounds. I

Submitted January 26, 2018 at 08:04PM by Julian Lenz
via Flutter Dev http://ift.tt/2E9glvT
Reddit: Building a new app should I use flutter or do native ios and android
Hi all!Very excited to learn about Flutter.I want to build an app that needs to be available on both iOS and Android.I am an iOS developer, and would need to access to common shared libraries, which I generally install use pod files.Is there a similar thing for Flutter as well? How does that even work for Android? (i.e the framework is only for iOS, how would that same framework also just work for Android?).I am also curious if you folks recommend that I just build two separate apps, given that it would need maintenance. I am not using material design, and will have a designer give me assets.With that said, what kind of assets do I need for Flutter?

Submitted January 28, 2018 at 05:43AM by makingbread
via reddit http://ift.tt/2njzfZf
GGroup: Flutter: Future/async methods-how to pass updated variables before render Widget build(BuildContext)
I use the follow Firebase strucure to create a Private Chat: /// messages -> fromUserEncoded -> toUserEncoded -> text My authentication and access to Firebase are ok. /// * /// Future _ensureLoggedIn() async { /// GoogleSignInAccount user = googleSignIn.currentUser; /// if(user == null)

Submitted January 28, 2018 at 11:24PM by Colque Paxi
via Flutter Dev http://ift.tt/2rMv2mc
Reddit: Is there any in-depth Flutter video course or book or some such?
I've seen a few youtube videos but most are pretty basic.Here's what I'd like to see:An app w/ multiple screens w/ navigation.Data retrieved from network, persisted from disk, etc.Build quality: dart/flutter lint-ing/static analysis, continuous integration, unit tests / ui testsExample of integrating extras: push notifications, analytics, in-app-purchases or ads, crash reporting, beta testing, etc.I'm not familiar with Dart or Flutter so I'm just not sure about how to evaluate whether to use it for my project. But right now the only alternative is to build it in native Android (which I do know), then write the separate iOS app (which I know nothing of), or use React-Native which I haven't taken too very well.Nonetheless the other technologies all have books, Udemy/Udacity/etc. courses. What is there for Flutter?

Submitted January 29, 2018 at 11:26AM by TranslucentPond
via reddit http://ift.tt/2DHiaPS
GGroup: flutter debug tools (debug_paint, etc) not showing up in Android Studio...
I'm using Android Studio for flutter development and noticed that View/Tool Windows/Flutter is missing (options for Debug_Paint, etc). Am wondering if this functionality only available in Intellij itself or should I be seeing it in Android Studio as well? Everything else with Flutter in Android

Submitted January 29, 2018 at 09:22PM by Dave Ripp
via Flutter Dev http://ift.tt/2DL5mYP
GGroup: Serialize/Desrialize objects like java APIs?
In Java , serialization : ... ObjectOutputStream oos = null; try { ByteArrayOutputStream bos = new ByteArrayOutputStream(); oos = new ObjectOutputStream(bos); oos.writeObject(obj); result = bos.toString("ISO-8859-1"); result = URLEncoder.encode(result, "UTF-8"); } catch

Submitted January 30, 2018 at 04:32AM by Qikai Yang
via Flutter Dev http://ift.tt/2Elv3QE
GGroup: Re: Animate absolute Positioned Containers inside a Stack
You could use an AnimatedPositioned instead of a Positioned, and just set _x and _y to whatever end values you want, and AnimatedPositioned will animate them to those values. On Wed, Jan 24, 2018 at 2:40 PM Taco Perquin wrote: > Hello, > > I'm trying to animate a

Submitted January 30, 2018 at 06:39AM by Ian Hickson
via Flutter Dev http://ift.tt/2Gt20eH