Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
GGroup: Mailing List
Hey guys, Android Dev from New Zealand here, getting into Flutter (YAAYYY) and would like to join the mailing List. Chur!! Andy

Submitted September 09, 2018 at 01:26AM by Andres Garcia
via Flutter Dev https://ift.tt/2QgBeuL
Reddit: Announcing kiwi – Dependency injection for Dart and Flutter
https://ift.tt/2MgQXah

Submitted September 09, 2018 at 10:13PM by Purple_Pizzazz
via reddit https://ift.tt/2QgZyg8
GGroup: possible to turn string "SomeClass" into code SomeClass() ?
My goal is to have an application framework built on Flutter where developers can define most of the application layout in JSON. For example, if I wanted to define an application with only one tab called "Home" I would write an app.json file that looks like this: { "title":"App Title",

Submitted September 10, 2018 at 02:36AM by Rick Spencer
via Flutter Dev https://ift.tt/2O2vH9M
Reddit: Is Flutter code style ugly ?
Hey guys, this is just an opinion, I am following the Flutter tutorial and I found code style its just ugly (I came from Python where readability is a very important point), it took me some time (like 10 minutes) to understand what was happening. Also I have read some codes at github, and they look very similar, that makes me think I am wrong, or I just want Python everywhere :D.For example, this code from Flutter tutorial```dart import 'package:flutter/material.dart';void main() => runApp(MyApp());class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'Welcome to Flutter', home: Scaffold( appBar: AppBar( title: Text('Welcome to Flutter'), ), body: Center( child: Text('Hello World'), ), ), ); } } ```Is there a reason of why doing that is better than... for example this ?```dart import 'package:flutter/material.dart';class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { AppBar appBar = AppBar(title: Text("Welcome to Flutter")); Center center = Center(child: Text("Hello World!")); Scaffold scaffold = Scaffold(appBar: appBar, body: center);
Widget app = MaterialApp( title: 'Welcome to Flutter', home: scaffold, ); return app; 
} }void main(){ runApp(MyApp()); } ```The return line is the most important one in this example, I think.

Submitted September 10, 2018 at 02:29AM by robertpro01
via reddit https://ift.tt/2x4T6RF
Reddit: Problems doing Travis-CI builds with new Flutter project
I have started working on a new Flutter project and I was trying to get Travis-CI integrated with this project. I previously had successfully configured Travis-CI for another Flutter project and it worked perfectly. However this time around it doesn't seem to be working. The builds are not getting triggered at all, not sure where the problem lies. Has someone faced a similar issue? What will be the best course of action? Should I contact Travis support or is there a config issue that I am not seeing, similar configs work for the other project. Any help is greatly appreciated.Github: https://github.com/sudhanshu-15/sunapsisConference2018FlutterTravis: https://travis-ci.com/sudhanshu-15/sunapsisConference2018Flutter

Submitted September 10, 2018 at 03:39AM by ssiddh
via reddit https://ift.tt/2Qkb766
GGroup: Opening other apps (Facebook, Twitter, Instagram)
Is it possible to open third-party apps (specifically Facebook, Twitter, and Instagram), assuming they're installed, from a Flutter app? Ideally I would be able to open to a post composer, maybe even with a post started with text my app specifies. I know that's asking a lot; I'd settle for just

Submitted September 10, 2018 at 05:41AM by Jonah Greenthal
via Flutter Dev https://ift.tt/2QjcUbW
Reddit: Widget Testing in Flutter
Hello Folks,i am pretty interested in testing so since i started i questioned myself how we should keys. I mean yeah i know that global keys are not the best options, but i am thinking the way how to effective to test an app. Is it okay to use Key like ids or classes in html for testing purposes?​Thanks for hearing me :D​Regards FluCoder

Submitted September 10, 2018 at 08:42AM by FluCoder
via reddit https://ift.tt/2CKERGy
GGroup: Flutter module in Android native project can't load plugins.
*XXXXX*:*~/src/project*$ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel beta, v0.7.3, on Mac OS X 10.13.6 17G65, locale zh-Hans-CN) [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) [✓] iOS toolchain - develop for iOS

Submitted September 10, 2018 at 12:11PM by ZP L
via Flutter Dev https://ift.tt/2MfWVIc
GGroup: How to swap a widget inside one container?
I want to swap widget inside one container. Container will contain list of text or some other elements. I want to swap that list of text one by one within a container Here is example: [image: content_static_bg.gif]

Submitted September 10, 2018 at 03:14PM by Falak Sabbir
via Flutter Dev https://ift.tt/2wYCyda
Reddit: IrregulApp
This is my first app published in Play Store make in Flutter, https://play.google.com/store/apps/details?id=com.mtuxo.verbosirregulares, I appreciate any comments, thanks

Submitted September 10, 2018 at 06:04PM by miltux
via reddit https://ift.tt/2Qp2doe
Reddit: Flutter and VR using Google VR
I have written a 3d graphics engine and can update a texture inside flutter and accept movement gestures.My wife is a dentist and so we 3,D scan their mouths and then show them what the I side of their mouth looks like. You have no idea what a difference it makes for an anxious children at the Dentist.I was wondering if there is the possibility of making it work with Google day dream.

Submitted September 10, 2018 at 09:13PM by gedw99
via reddit https://ift.tt/2NwSiOx
GGroup: Proposed changes to the CupertinoPageRoute class
The CupertinoPageRoute class contains a few methods that help MaterialPageRoute use "Cupertino" style page transitions when the target platform is iOS. We're considering removing a few of them as part of adding support for specifying the default page transition animation via the Material Theme.

Submitted September 11, 2018 at 02:39AM by hansmuller
via Flutter Dev https://ift.tt/2CH8loV