Flutter Heroes
26K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: Flutter Geofencing
Hi there, so I have this case scenario which I do not know how to approach. I am building an app that relies heavily on location. I need to know if a user has entered a certain perimeter so I learned that geofencing can help with that. However, I need to define these geofences beforehand, like create them online and the app should pick up where it is in one of the predefined geofences. Is there a platform that allows me to achieve this that has a flutter API?

Submitted October 09, 2018 at 10:58AM by spongyboss
via reddit https://ift.tt/2EgYpU6
Don't settle for one great looking screen when multiple screens can be just a swipe away! With PageView and PageController, it’s easy to create a series of screens that users can swipe vertically and horizontally. Give it a try!

Click for more #WidgetoftheWeek tips ↓ pic.twitter.com/7hM0M1xUbS— Flutter (@flutterio) October 9, 2018

October 09, 2018 at 07:17PM
via Twitter https://twitter.com/flutterio
Reddit: Hitting Roadblock reminding me that Flutter is still Beta...
I really hope that Google hires more Developers to maintain Flutter and bring it to a stable 1.0 .Once your app gets more complex you will most probably also hit crashes and incompatible plugins.Here alone are 488 open Server Crashes which were reported https://github.com/flutter/flutter/issues?q=is%3Aopen+is%3Aissue+label%3A%22severe%3A+crash%22Compared to React Native which has total open 635 Issues https://github.com/facebook/react-native/issues

Submitted October 09, 2018 at 06:33PM by ChristBKK
via reddit https://ift.tt/2ILbUd7
GGroup: Re: Error in MediaQuery.of(context)
Falak, You'll need to move your width variable into the build function so that it has access to the context. Since the device screen width can change (when the device is rotated, for instance), it needs to be re-accessed with each build. Something like this: class Experience extends

Submitted October 09, 2018 at 07:40PM by G Spencer
via Flutter Dev https://ift.tt/2pJzvSJ
Reddit: Remote Redux Debugging in Flutter: Connect your Flutter app’s Redux Store to the Redux Devtools from the web!
https://ift.tt/2yrUgq7

Submitted October 09, 2018 at 09:50PM by Elixane
via reddit https://ift.tt/2OhLxkY
GGroup: Problem with Valid COMODO Certificate
Hi, My application is using import 'package:http/http.dart’ for REST consumption. In development environment we are using LetsEncrypt certificates and everything is OK. In pre-production environment we have configured a valid COMODO wildcard certificate (image attached). But the application

Submitted October 09, 2018 at 10:28PM by Ernesto Campohermoso
via Flutter Dev https://ift.tt/2NzHv2e
GGroup: New Beta (v0.9.4)
Hello! a new beta version has been released. Check out what's new in v0.9.4 in the changelog below: Changes in v0.9.4 (since v0.8.2 ) - beta 9 v0.9.4 - #21715 , The default MaterialP

Submitted October 10, 2018 at 01:50AM by Michael Goderbauer
via Flutter Dev https://ift.tt/2ybKYiF
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