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

How do I create a button for a QR code to open a link?
I made this app, but now I can't make the generated link open in the browser. is it possible to add a button that opens the scanned link or make the text as a link to click? I don't know how to behave in this case. Does anyone know how to do? Thanks! Ho creato questa app, ma ora non riesco ad

September 26, 2019 at 11:53AM by Marzitek283
https://ift.tt/2lYEIYH
New post on /r/flutterdev subreddit:

What's the best architecture for an advanced app that relies heavily on Firebase and Method Channels?
I want know what's the best architecture for this kind of app? (reposted with better title)
I'm working on an IoT Flutter app, it's already pretty much done. It uses provider and stateful classes core of state management. Each view has a provider and stateful class that uses the provider to execute network calls, perform actions etcThere are tons of Firestore collections and subcollections calls being into StreamSubscrition. App often also call native call from method channels to discover devices from a service.Current architecture is fine but it's slow at times and unstable. Thanks

September 26, 2019 at 11:52AM by TahaTesser
https://ift.tt/2mPrgX6
New post on /r/flutterdev subreddit:

Resources for Flutter in IOT, Pi
I am Flutter/Android Developer. Can someone provide me resources to make apps for IOT in Raspberry Pi, or any other. I am new in IOT.

September 26, 2019 at 11:46AM by theshivamlko
https://ift.tt/2lXgGNx
New post on Flutter Dev Google group:

Android dependency in just the Android app part.
Hi! I am all new to Flutter and I have just started trying it out. I have a concept working that triggers specific code if it is an IOS app or an Android app that is running. I have used plattform channels for this. Now I was wondering that if I found a library online for something specific that

September 26, 2019 at 01:46PM by Joakim Sjöberg
https://ift.tt/2nvMv0F
New post on /r/flutterdev subreddit:

auto_animated | Automatic list animation in 2 minutes
Package that simplifies animating lists, in future not only listsPub: https://pub.dev/packages/auto_animated
Source: https://github.com/rbcprolabs/flutter_plugins/tree/master/packages/auto_animatedPR's are welcome!

September 26, 2019 at 02:01PM by SergeShkurko
https://ift.tt/2lWZXtT
New post on /r/flutterdev subreddit:

Braintree Payment Plugin Flutter integration code
Hi Flutterians,Are you in need of payment gateway integration code for flutter? Look no further, my team has created a Braintree flutter integration code. Accessible at GitHub: https://www.deligence.com/blog/braintree-payment-plugin-for-flutter-apps

September 26, 2019 at 01:37PM by apekshakhanna
https://ift.tt/2lKVIlb
New post on Flutter Dev Google group:

Possibility to drag files into macOS app
Hey, as I found out, its currently not possible to drag and drop files in a macOS app written in flutter? Or is there a way to realize that with a plugin? Greetings Leon Hoppe

September 26, 2019 at 04:13PM by Leon Hoppe
https://ift.tt/2ll8nLf
New post on /r/flutterdev subreddit:

How to apply graphical changes to certain coordinates in Flutter?
So I'd like to make graphical changes on the screen at certain coordinates, located through the Point class. Is there a way to do this? (Make an overlay maybe or apply direct graphical changes like drawing dots etc if possible)

September 26, 2019 at 06:53PM by DoesRealAverageMusic
https://ift.tt/2lnHLt1
New tweet from FlutterDev:

We just launched a new showcase page!

Get inspired by the beautiful apps organizations are building with Flutter. Check out testimonials, videos, and resources from top companies around the world.

It's live here → https://t.co/uMXvDAqLXO pic.twitter.com/5tdf5hhtLd— Flutter (@FlutterDev) September 26, 2019

September 26, 2019 at 09:01PM
http://twitter.com/FlutterDev/status/1177297072577490944
New post on /r/flutterdev subreddit:

Writing a UI in code?
I just started using flutter and have been somewhat put off by the fact that the UI needs to be entirely built through code. The nightmares of Java Swing came flooding back and I wanted to know anyone else's opinion on it and if you enjoy using it. What do you think?

September 26, 2019 at 11:17PM by Forumpy
https://ift.tt/2nCeXxQ
New post on /r/flutterdev subreddit:

Does anyone know how to debug an application in raspberry pi interface?
I seen videos of flutter on raspberry pi, but haven't seen a step by step tutorial on it. Anyone know any good links or have a quick guide to get started?

September 27, 2019 at 12:25AM by mikeyyg58
https://ift.tt/2nyIgkF
New post on /r/flutterdev subreddit:

Does Flutter web works only in chrome.?
Hi, Anyone experienced develope web app with Flutter? Is it working in another browsers fine same as chrome

September 27, 2019 at 10:24AM by Thiszmyusername
https://ift.tt/2lxMRD7
New post on /r/flutterdev subreddit:

Use C/C++ code in your Flutter app: Binding to native code using dart:ffi
https://ift.tt/2m45iQi

September 27, 2019 at 10:01AM by EngineerScientist
https://ift.tt/2mfXLxA
New post on /r/flutterdev subreddit:

Future<HttpClient> is not a subtype of HttpClient
​​import 'dart:io';import 'package:dio/dio.dart';import 'package:flutter/material.dart';import 'package:flutter/services.dart';import 'package:flutter_app_retrofit/example.dart';class Homepage extends StatefulWidget {@overrideHomepageState createState() => HomepageState();}class _HomepageState extends State<Homepage> {@overrideWidget build(BuildContext context) {return Scaffold(backgroundColor: Colors.white,body: Center(child: FutureBuilder(future: this._getPosts(),builder: (context, snapshot) {switch (snapshot.connectionState) {case ConnectionState.none:return CircularProgressIndicator();break;case ConnectionState.waiting:return CircularProgressIndicator();break;case ConnectionState.active:return CircularProgressIndicator();break;case ConnectionState.done:return CircularProgressIndicator();break;default:return CircularProgressIndicator();}},),),);}Future _getPosts() async {final dio= Dio();(dio.httpClientAdapter as DefaultHttpClientAdapter).onHttpClientCreate = await (client) async {SecurityContext securityContext=new SecurityContext();final ByteData crtData = await rootBundle.load('assets/server.crt');securityContext.setTrustedCertificatesBytes(crtData.buffer.asUint8List());final ByteData keyBytes = await rootBundle.load('assets/server.key');securityContext.usePrivateKeyBytes(keyBytes.buffer.asUint8List());return HttpClient(context: securityContext);};final client = RestClient(dio);client.login('ma******han@****.in', '88888');}}​​In flutter we are getting using Dio. I am getting a error using Dio The problem is here that i need to use SSl certificate So i used Dio But now i am getting the below error. Unhandled exception Future<HttpClient> is not a subtype of HttpClient.

September 27, 2019 at 11:06AM by Durgeshn70
https://ift.tt/2meWDui
New post on /r/flutterdev subreddit:

Are you a flutter developer ? Did you use build_value or moor ? Do you want to see our to generate dart code using an annotation ? Here's my new blog post about it, check it out
https://ift.tt/2lESwaE

September 27, 2019 at 01:25PM by bitsydarel
https://ift.tt/2ndm5AE