Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: #HumpDayQandA Recap October 3rd – Flutter Community – Medium
https://ift.tt/2A10r6m

Submitted October 10, 2018 at 12:48AM by Nash0x7E2
via reddit https://ift.tt/2IMV0uH
GGroup: How To remove Appbar
I had searching for how to remove appbar in flutter framework. Using elevation attribute in appbar is not removing appbar? Anyone know how to remove appbar? Thanks in advance..

Submitted October 10, 2018 at 08:04AM by Dharani tharan
via Flutter Dev https://ift.tt/2RC5oJL
GGroup: How to multiple textfield in container?Am struck in this.
Here is my Code, Column buildtabcolumn(String label,String data) { Color color = Theme.of(context).primaryColor; return Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Container( margin: const EdgeInsets.only(top: 8.0), child: Text(

Submitted October 10, 2018 at 09:08AM by Dharani tharan
via Flutter Dev https://ift.tt/2pKwTUF
Reddit: Cucumber / BDD runner for Dart - Dherkin2 needs help
With colleagues I've been doing some work to try and bring Dherkin back to life. It should be interesting to anyone from the industry who's had experience of Cucumber, JBehave and others, or Behavior Driven Development (BDD) generally.The thing executes towards step invocation of steps but then barfs on some reflection logic. I look at the exceptions but I'm way out of my depth with Dart to be able to fix it.Here's a cut-down (courtesy of grep) except from a build log, to show the disconnect in a way that someone might just say "oh I know how to fix that".
$ cucumberd example/gherkin/test_feature.feature | grep "Exception:" Exception: NoSuchMethodError: No top-level method 'i_run_some' with matching arguments declared. Exception: type 'StringBuffer' is not a subtype of type 'ParameterMirror' Exception: type 'StringBuffer' is not a subtype of type 'ParameterMirror' Exception: NoSuchMethodError: No top-level method 'everything_works' with matching arguments declared. Exception: NoSuchMethodError: No top-level method 'i_have_a_table' with matching arguments declared. Exception: NoSuchMethodError: No top-level method 'i_am_a_step_after' with matching arguments declared. Exception: type 'StringBuffer' is not a subtype of type 'ParameterMirror' Exception: NoSuchMethodError: No top-level method 'everything_works_just' with matching arguments declared. Exception: type 'StringBuffer' is not a subtype of type 'ParameterMirror' Exception: type 'StringBuffer' is not a subtype of type 'ParameterMirror' 
The fuller build instructions are in the README, which is quite followable. Running without the grep-pipe will yield 9 yards of colored Cucumberesque output as well as those exception prefixed lines interspersed.

Submitted October 10, 2018 at 10:53AM by paul_h
via reddit https://ift.tt/2E8TCUj
GGroup: dhow to display both listview and tabview in flutter body
Here is my Code import 'package:flutter/material.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatefulWidget { @override State createState() => new MyAppState(); } class MyAppState extends State { double num = 245.0; @override Widget

Submitted October 10, 2018 at 11:45AM by Dharani tharan
via Flutter Dev https://ift.tt/2yrehgj
Reddit: flutter_ssh | SSH and SFTP client for Flutter
https://ift.tt/2ypeUHi

Submitted October 10, 2018 at 11:30AM by x_ash
via reddit https://ift.tt/2PpXPnT
GGroup: Rounded modal bottom sheet
I want to make rounded corner in modal bottom sheet. I used this code showRoundedModalBottomSheet( context: context, radius: 10.0, builder: (builder){ return new Container( // height: 300.0, color: Colors.white, child: new Container(

Submitted October 10, 2018 at 12:08PM by Falak Sabbir
via Flutter Dev https://ift.tt/2ywcG9k
GGroup: Divider between ListView like in Telegram
Any one know how to achieve this divider like structure within the listview in flutter? Sorry for the noob question im new to flutter.

Submitted October 10, 2018 at 01:31PM by jia chen
via Flutter Dev https://ift.tt/2INOxj9
GGroup: Google Maps plugins
Anyone integrate with any Google Maps plugins recently? Map_view is not working and support is stopped. Getting compile errors/version conflicts for Android with current "official" google_maps_flutter plugin as well. Most other options are derived from the map_view code are not working.

Submitted October 10, 2018 at 02:17PM by s ghose
via Flutter Dev https://ift.tt/2OhLmX3
Reddit: flutter_colorpicker | A HSV color picker inspired by Chrome devtools and a material color picker for your Flutter app.
https://ift.tt/2orD6UB

Submitted October 10, 2018 at 02:07PM by Purple_Pizzazz
via reddit https://ift.tt/2CAOO8C
GGroup: Problem in Bottom NavigationBar with 3 tabs
If i have 3 tabs in bottom navigation bar, the second tab sometimes not recreated(persisting or initStat() is not called). here is the code: import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContex

Submitted October 10, 2018 at 03:25PM by AVRSP GKF
via Flutter Dev https://ift.tt/2RL7szg
Reddit: I can help you to build your flutter app for free.. DM me if you're interested 😁
No text found

Submitted October 10, 2018 at 03:46PM by LazarusHD
via reddit https://ift.tt/2OS53Uw
GGroup: Synchronous data in BLoCs
I am trying to wrap my head around how to use BLoCs in my code and this was a big help: https://ift.tt/2NUFj9N I am trying to understand one of the "rules" of a BLoC: - rely on *exclusive* use of *Streams* for both input (*Sink*) and

Submitted October 10, 2018 at 05:33PM by Bryan Gintz
via Flutter Dev https://ift.tt/2yc8bB6
GGroup: want to know about vedio player
can any one show me a path to create a vedio streaming app .

Submitted October 10, 2018 at 08:22PM by Yogesh Sharma
via Flutter Dev https://ift.tt/2EdZXxR
Reddit: Help with FAB and BottomAppBar
Hey guys,​I'm having some trouble finding an answer to this problem I'm having. I have navigational icons and essentially I'd like the endDocked Fab be the end of the appbar in terms of spacing. (TotalAppBarWidth - FABwidth).​https://imgur.com/a/uR1zXbX​The first photo is the 3 icons with even spacing, I'm concerned this won't keep properly across every device and isn't the proper solution to this.​The second picture is more closely what I'm after, just without the 4th icon tucked under the FAB.​Is there a way to do this?​Thanks!

Submitted October 10, 2018 at 08:42PM by GolangGang
via reddit https://ift.tt/2RBwPDo
Reddit: Ozzie: library that will help you to generate HTML reports while running integration tests on Flutter
https://ift.tt/2OSG2IW

Submitted October 10, 2018 at 10:18PM by Purple_Pizzazz
via reddit https://ift.tt/2ISG66l
Reddit: Flutter Architecture Inherited or Redux?
Hello i am making a grocery online app and i want to start it in a clean architecture which method can i useI viewed many examples of redux and it is very complicated and don't know what can i do for a big projectI think inherited method of flutter is not for big projectsHelp me please to choose a clean architecture specially for login routes and if you have choosen redux give me a clean and good example

Submitted October 11, 2018 at 05:02AM by fadygrgs
via reddit https://ift.tt/2A3Zeet