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

FlutterForce — Week 16
https://ift.tt/2tMuXgp

March 03, 2019 at 09:09AM by flutterist
https://ift.tt/2H9eMBE
New post on /r/flutterdev subreddit:

Content Managing System for Flutter app? Flutter for Desktop or Angular Dart?
I need to build some kind of Back Office/End / Content Managing System for my client, so he can add content to the flutter app. I'm using firebase as a backend. I not completely sure if I should build a web app or a desktop app for this case (I think a Desktop app is more secure and simpler?) but I want to use dart so I can share some code with the app. So as far as I know I have two options for this: AngularDart and the desktop embedding for flutter.Have you experience with one of these tool? What would you choose?

March 03, 2019 at 12:05PM by jwknows
https://ift.tt/2XsSalo
New post on /r/flutterdev subreddit:

Trying to make a STRING picker in Flutter
Hello! Thanks for reading in advance.I'm desperately trying to make something which you might call a string picker with Flutter. It's like a listview with faded top and bottom. The user will scroll and select an option. How can I implement this?I already tried ShaderMask with a linear gradient to achieve this. But can't seem to get it work. :( Now, there's already a library called Picker, which is pretty neat. But as I saw in the demo, I think it only works as bottom sheet dialogs.

March 03, 2019 at 03:24PM by _nightwielder_
https://ift.tt/2NGjMiv
New post on /r/flutterdev subreddit:

How to access Stateful widget variable inside State Class?
I am trying to access the 'someDate' variable declared in the code in the _FoobarWidgetState. I found online that you can do it using the 'widget' keyword as shown in the Text widget below. But the problem is that I am trying to access the variable outside the build method in order to give the TextEditingController a default value. How can I achieve this? Thanks in advance :)
import 'dart:core'; 
import 'package:flutter/material.dart';class FoobarWidget extends StatefulWidget { final String someDate; FoobarWidget(this.someDate);@override _FoobarWidgetState createState() => new _FoobarWidgetState(); }class _FoobarWidgetState extends State<FoobarWidget> {
TextEditingController _titleController = new TextEditingController(); 
@override Widget build(BuildContext context) { return new Container(       child: new Column(children: <Widget>[ new Text("some date is ${widget.someDate}"), ]), ); } }​

March 03, 2019 at 04:41PM by nerdThatYouLike
https://ift.tt/2IQADjT
New post on /r/flutterdev subreddit:

#2 Flutter + Dart Tips
I just published #2 Flutter + Dart Tipshttps://link.medium.com/lDPVQ0E9KUIf you have good tips then do share and make a PR in the repository. Link is in a Article.

March 03, 2019 at 05:23PM by ibhavikmakwana
https://ift.tt/2tPsqlA
New post on Flutter Dev Google group:

Failed to test https://ift.tt/2EINqRr
Can anyone tell me how I can fix this? Running Gradle task 'assembleDebug'... e: C:\FlutterSDK\flutter_windows_v0.5.1-beta\flutter\.pub-cache\hosted\ pub.dartlang.org\map_view-0.0.14\android\src\main\kotlin\com\apptreesoftware\mapview\MapViewPlugin.kt: (168, 34): Only safe (?.) or non-null

March 03, 2019 at 06:15PM by Chris
https://ift.tt/2VxXeTI
New post on /r/flutterdev subreddit:

How to handle internet connectivity with Firestore backend?
Hi Everyone!I am develop chat app in Flutter with Firebase (Firestore) backend.I have develop all functionality now (auth, send message). This all work good when connect to internet but I realise I am not handle bad/no connectivity in 2 way:UI: I am not display to user if have connectivity issue.Backend: I am not handle situation where no connectivity. For example I am just call method without check connection:firestore.add({‘Message’: message,});So I need handle connectivity for both way.For week I search but cannot find good solution. There is no good guide or example.​So I want ask community: How you handle the 2 issue I have? For UI are you use loading indicator or show connectivity status banner? For backend how are you make you connectivity check available across all app widgets?​Probably must use connectivity 0.4.2 package. I see tutorial how to use but I cannot find scalable/production use example in real app.I am use scoped_model so want find way use this for notify descendant widgets when connection state change. Hope can avoid wrap all call to Firestore in connectivity subscription!Anyone have advice/experience?Thanks!

March 03, 2019 at 06:19PM by Flutter_Dev
https://ift.tt/2tKnNcJ
New post on /r/flutterdev subreddit:

Another BloC example (starter template)
https://ift.tt/2ErW4SV

March 03, 2019 at 08:19PM by n1x0nj4
https://ift.tt/2TcB6BK
New post on Flutter Dev Google group:

How can setState() be called in a Stateless Widget?
Hello, I am following this online course where we just separated the RaisedButton from the Stateful Widget to a Stateless Widget created in the State object. I don't understand how setState() is called in a StatelessWidget... When we create the element ProductControl we pass the function

March 04, 2019 at 05:09AM by Kamil Geagea
https://ift.tt/2TbWhDY
New post on /r/flutterdev subreddit:

Flutter bloc library
Hi friends, Have you try flutter bloc library? Could you please share your review on this? Can I use this for enterprise level project?https://github.com/felangel/bloc/blob/master/README.md

March 04, 2019 at 06:34AM by vaibhav_2018
https://ift.tt/2EK4rKM
New post on /r/flutterdev subreddit:

Adding a EULA? What's been your approach?
Hi everyone!Working on my first app. I want to add a EULA/agreement on first use for the user to accept.What has the approach you have taken?My thoughts were to add a dialogue box and if the user accepted it then check in shared preferences on start-up to see if they agreed. Wanted to know if there was a more elegant or better way of doing this.

March 04, 2019 at 07:57AM by pandasdokungfu
https://ift.tt/2IOc9rr
New post on Flutter Dev Google group:

Show Notification on lock screen
Hello, I didn't see notification on lock screen but I can see noti when open lock screen. I used firebase messaging and firebase local notification libs. Please help me, Thanks.

March 04, 2019 at 10:23AM by hnin yu wai
https://ift.tt/2XvYtVv
New post on Flutter Dev Google group:

Convert a stateless widget into a method
Hi, Is it possible to convert a stateless widget into a method

March 04, 2019 at 10:41AM by Mounika
https://ift.tt/2GXbK4r
New post on /r/flutterdev subreddit:

Say hi to Flutter Press Weekly, the new weekly digest of Flutter development news and articles!
https://ift.tt/2Uny3Du

March 04, 2019 at 09:49AM by xrigau
https://ift.tt/2TfsuKI
New post on /r/flutterdev subreddit:

Welcome to Ouija Quiz!
Hello, guys! This is my first app made in Flutter.It is a simple hangman style game where the user gets the questions from r/AskOuija and they have to guess what the community said.I know the code doesn't follow the best practices but this is my first app and I am pretty proud of it!Of course, feedback is very much appreciated.Github link:https://github.com/andreicorpo/ouija-quiz-gameThere is also an apk if you want to try it.I'm waiting for your feedback and let me know if you played it and liked it and if you think it is worthy of the play store.Thanks for reading and have fun coding with Flutter!

March 04, 2019 at 11:22AM by Andokorr
https://ift.tt/2TtbJLi
New post on Flutter Dev Google group:

Xamarin vs Flutter vs ASP.Net vs .net core, and 3rd party vendors
This is a suggestion to MS/Google, and all 3rd party vendors. https://ift.tt/2UhMNn3 Xamarin while has a lot of nice features, it just still takes all the heavy load of the OS original UI. Its advances depend on the pace of the OS UI

March 04, 2019 at 01:26PM by in...@appyinnovate.com
https://ift.tt/2C4exVj
New post on /r/flutterdev subreddit:

Flutter panel with partners at Mobile World Congress 2019: What happened?
https://ift.tt/2NGL4W1

March 04, 2019 at 02:02PM by Gigatronbot
https://ift.tt/2TbY2B7