Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

Login and go to other page after
I have a small problem I'm thinking of how to best solve it in flutter. I could probably solve it myself with some hack, but I'm sure there is a more beautiful flutter way, so here goes... I have a button in my UI where if clicked I want to tell the user that to go to this page, he should first

June 11, 2019 at 10:58PM by Mattias Månsson
http://bit.ly/2I9us8g
New post on /r/flutterdev subreddit:

Flutter OpenGL : An early preview of OpenGL plugin using a Texture() widget for Flutter. Only supports Android with NDK for now
http://bit.ly/2I9DEti

June 11, 2019 at 11:49PM by EngineerScientist
http://bit.ly/2Iz7mXI
New post on /r/flutterdev subreddit:

Flutter apps in multiple languages
I'd like to create apps in multiple languages since I'm American & residing in Asia.It looks like localization was thought of when Flutter was initially created.For those who have apps in multiple languages do you prefer one app in multiple languages & let the user select at the start or separate versions/builds for each country or locations?I've only released one app so I'd like to hear from others on what you did & why.

June 12, 2019 at 12:15AM by replayjpn
http://bit.ly/2X4nKsi
New post on /r/flutterdev subreddit:

Handling Permissions in Flutter in a way that's less messy
http://bit.ly/2F4Dj94

June 12, 2019 at 05:09AM by Filledstacks
http://bit.ly/2ZkzeFv
New post on Flutter Dev Google group:

How to connect my server(built using nodejs and mongoDB) to flutter app
I have developed RESTful API using Node js and MongoDB. I want my request on client side to be sent to the server-side through URL. I'm new to this, please help.

June 12, 2019 at 06:44AM by Rajashree Parhi
http://bit.ly/2R8Qv1E
New post on Flutter Dev Google group:

A simple Flutter plugin to deal with Android Intents
Released v1.0.0 of intent - your one stop solution for handling different Android Intents from Flutter app. Provides an easy to use Dart API, which can be used to launch different kind of Android Activities. Possible constant values to be attached with intent, are also provided in seperate

June 12, 2019 at 12:02PM by Anjan Roy
http://bit.ly/2KdPULG
New post on Flutter Dev Google group:

A simple Flutter plugin to deal with Android Intents
Released v1.0.0 of intent - your one stop solution for handling different Android Intents from Flutter app. Provides an easy to use Dart API, which can be used to launch different kind of Android Activities. Possible constant values to be attached with intent, are also provided in seperate

June 12, 2019 at 12:02PM by Anjan Roy
http://bit.ly/2KdPULG
New post on Flutter Dev Google group:

E' PEDOFILO ED ASSASSINO: PAOLO BARRAI (BLOG MERCATO LIBERO ALIAS MER-D-ATO LIBERO)! MA CHI' E' DAVV
E' PEDOFILO ED ASSASSINO: PAOLO BARRAI (BLOG MERCATO LIBERO ALIAS MER-D-ATO LIBERO)! MA CHI' E' DAVVERO QUESTO PEDERASTA OMICIDA, NATO A MILANO IL 28.6.65, CHIAMANTESI PAOLO BARRAI? PER INIZIARE: E' STATO IL REGISTA DELLA CRIMINALISSIMA OPERAZIONE............."NDRANGHETA IN EIDOO"! https://group

June 12, 2019 at 03:16PM by RICICLASOLDIMAFIOSI PAOLO BARRAI ORDINATANTIOMICIDI
http://bit.ly/2R96TiE
New post on Flutter Dev Google group:

How to make a prototype to real-time app
Hello guys I'am new to mobile app development and flutter, can anyone guide me through how to use the prototype developed in Adobexd into flutter and make a real-time app

June 12, 2019 at 03:31PM by Hassain
http://bit.ly/2R9og2L
New post on Flutter Dev Google group:

Why this json response is a List and not a Map ?
Hello to all, i can't understand why my response.body from a http.get(url) return a List and not a Map.... I call my backend with http.get(url) then my php code return this : php code .......... $arr_final = array(); $arr = array (); // Query my database while($row=$sql_res->fetch_assoc

June 12, 2019 at 04:01PM by Pascal Fournier
http://bit.ly/2F40T5S
New post on /r/flutterdev subreddit:

FlutterBoost (dev: Alibaba) : A Flutter plugin which enables hybrid integration of Flutter for your existing native apps with minimum efforts
http://bit.ly/2QsGZGt

June 12, 2019 at 04:03PM by EngineerScientist
http://bit.ly/2IavgK8
New post on /r/flutterdev subreddit:

Button not adding cards
I'm trying to make a todo app using flutter but I'm stuck since the Button inside my dialog box is not creating cards as supposed to. The print function is working correctly so there is no syntax error(hopefully) . This is my main.dart​​
import 'package:flutter/material.dart'; import 'package:flutter/cupertino.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: 'Todo App', theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>(); void showInSnackBar(String value) { _scaffoldKey.currentState .showSnackBar(new SnackBar(content: new Text(value))); } TextEditingController customController = new TextEditingController(); createCard(String name){ } Future<String> createAlertDialog(BuildContext context) { return showDialog( context: context, builder: (context) { return AlertDialog( title: Text( "What do you want to do", ), content: TextField( controller: customController, ), actions: <Widget>[ MaterialButton( child: Text( "Submit", style: TextStyle(color: Colors.green), ), onPressed: () { Navigator.of(context).pop(customController.text.toString()); }, ) ], ); }); } @override Widget build(BuildContext context) { return Scaffold( floatingActionButton: FloatingActionButton( child: Icon(Icons.add), backgroundColor: Colors.green[700], foregroundColor: Colors.white, onPressed: () { createAlertDialog(context).then((onValue) { print(": " + onValue); return Scaffold( body: CustomScrollView( slivers: <Widget>[ SliverFillRemaining( child: Center( child: Column( children: <Widget>[ Text("" + onValue) ], ), ), ) ], ), ); }); }, ), body: CustomScrollView( slivers: <Widget>[ SliverAppBar( expandedHeight: 200.0, backgroundColor: Colors.green[200], floating: false, pinned: true, //backgroundColor: Colors.black, flexibleSpace: FlexibleSpaceBar( background: Image.asset("assets/barbg.jpg"), title: Text( "To-do", style: TextStyle( fontSize: 30.0, color: Colors.white, fontWeight: FontWeight.w100), ), titlePadding: EdgeInsets.symmetric(horizontal: 20.0, vertical: 5.0), ), ), SliverFillRemaining( child: new Center( child: new Column( children: <Widget>[ ], ), ), ) ], ) // This trailing comma makes auto-formatting nicer for build methods. ); } } 


June 12, 2019 at 03:46PM by smallguyxoxo
http://bit.ly/2KKRlR0
New post on /r/flutterdev subreddit:

How to change project name in flutter
This is very simple in flutter. Please follow steps mentioned on below url -​https://allexperts16.blogspot.com/2019/06/how-to-change-project-name-in-flutter.html

June 12, 2019 at 07:17PM by chetan1689
http://bit.ly/2IbOQFI
New post on /r/flutterdev subreddit:

Best State Management for your typical habit tracking productivity app?
Hey folks, I recently graduated highschool and decided to teach myself flutter by building a passion project of mine.Since I've always struggled to stick to one thing over a long period of time I decided to build a habit tracker. After learning the basics of flutter, I'm faced with the big decision of which state management to use.I've been thinking about using Bloc, but it kind of seems a bit overkill for my use case.What state management solution would you use?I'd be super grateful for some advice from the more seasoned devs out there :)Cheers!

June 12, 2019 at 07:06PM by flexindev
http://bit.ly/2wQOGwY
New post on /r/flutterdev subreddit:

Introducing Darq - A Dart port of .NET's LINQ Enumerable functionality
http://bit.ly/2Ra69tx

June 12, 2019 at 07:40PM by Abion47
http://bit.ly/2F5ZNXv