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

Flutter IntelliJ Plugin M41.1 Release
We updated the Flutter plugin for IntelliJ that allows it to be used with Android Studio beta 3.

November 12, 2019 at 01:02AM by Steve Messick
https://ift.tt/32BQPKx
New post on /r/flutterdev subreddit:

Flutter || Build a vertical list of heterogeneous elements with horizontal list of homogeneous elements
https://ift.tt/36UcPDN

November 12, 2019 at 12:56AM by Elixane
https://ift.tt/33FEOov
New post on /r/flutterdev subreddit:

How to get started in flutter
I have no idea what flutter is and how to get started in it except for it being an SDK and uses dart as language can anyone help me on how i get started on this it will be really helpful.

November 12, 2019 at 07:02AM by ajmalAJ
https://ift.tt/2NY2jmg
New post on /r/flutterdev subreddit:

MVVM in Flutter
Hey guys!I implemented a simple MVVM architecture in Flutter. It uses property-based data binding to establish a connection between the ViewModel and the View, and drives the View changes through the ViewModel. Simplify complex state management during the development of the Flutter.github: https://github.com/unicreators/mvvm```dart import 'package:flutter/widgets.dart'; import 'package:mvvm/mvvm.dart'; import 'dart:async';// ViewModel class Demo1ViewModel extends ViewModel { Demo1ViewModel() { propertyValue<String>(#time, initial: ""); start(); }start() { Timer.periodic(const Duration(seconds: 1), (_) { var now = DateTime.now(); setValue<String>(#time, "${now.hour}:${now.minute}:${now.second}"); }); } }// View class Demo1View extends View<Demo1ViewModel> { Demo1View() : super(Demo1ViewModel());@override Widget build(BuildContext context) { return Container( margin: EdgeInsets.symmetric(vertical: 100), padding: EdgeInsets.all(40), // binding child: $.watchFor<String>(#time, builder: $.builder1((t) => Text(t, textDirection: TextDirection.ltr)))); } }// run void main() => runApp(Demo1View()); ```

November 12, 2019 at 06:32AM by unicreators
https://ift.tt/2QfZShP
New post on Flutter Dev Google group:

need help for dev. flutter app
hi! my name is Vivek. I am not a tech guy but I want to dev. application with flutter anyone wants to help me so contact me for more discuss ;- chavda...@gmail.com

November 12, 2019 at 10:33AM by vivek chavda
https://ift.tt/32FVhru
New post on Flutter Dev Google group:

Flutter: how to get DPI of device screen
Is there a way to get the actual value of screen DPI in Flutter (Dart)?? I need that value to calculate many other stuffs, and so it's not enought for me to use integrated Flutter features about responsiveness. I really need a *raw DPI value*. I mean for example like: MediaQuery.of(context).

November 12, 2019 at 11:24AM by Luca Dal Poz
https://ift.tt/2Qb32mY
New post on /r/flutterdev subreddit:

GDPR and EU with Flutter for Web
Is there any cookies that are saved by using flutter web?​Theoretically if I publish a counter app, what do I need to add so that the website is legal in EU?​Thank you

November 12, 2019 at 12:06PM by matejthetree
https://ift.tt/2CD9kDS
New post on Flutter Dev Google group:

how to show all function of one class in outline
I want to IDE to show all the function of one class ( functions of implement by the class and all of its parents) in flutter what IDE has such ability and how to config it; thanks;

November 12, 2019 at 01:37PM by Jianming Wan
https://ift.tt/33Dhk3C
New post on Flutter Dev Google group:

Troubleshooting for Flutter Firebase Analytics
Hi Flutter developers, I'm troubleshooting Flutter Firebase Analytics tutorial: https://ift.tt/2X8f0Pr (Tutorial "Add Firebase to your Flutter app" did not work) Does the tutorial work for you lately? If so, I appreciate if you can share successful log for

November 12, 2019 at 03:26PM by Tomo Suzuki
https://ift.tt/32C8Zvz
New post on Flutter Dev Google group:

Flutter and permissions
Hello, I am currently trying to develop an application that will need to use the microphone, but I can't get my app displaying a message to grant permissions for it... It closes as soon as it starts, and in logcat, I get the following error, even when I am not using anything that needs

November 12, 2019 at 05:56PM by TheZelda Boss
https://ift.tt/32zFFpC
New post on /r/flutterdev subreddit:

Braintree payment plugin in flutter with server side
I am trying to integrate Braintree payment plugin in my flutter app. But i am confused because they didn't demand any id or didn't have any server side connection. Furthermore i jjust followed the plugin but when i enter the credit cards for payment , its declared the card as an invalid. Please help me , two weeks had passed and till now i didn't find anything.

November 12, 2019 at 07:41PM by asifaathwal
https://ift.tt/2qLAjdL
New post on /r/flutterdev subreddit:

Voice to text and text to speech
I wanna create an app where I need the feature of voice to text to navigate through the app and also text to speech to output some text that is displayed on the phone. Would that be possible with flutter rn? Ehat do you think? How would you approach such a problem?PS: I need it to work for android and ios that's why i chose flutter but I can't and don't want to write native platform code.

November 12, 2019 at 09:56PM by Hard_Veur
https://ift.tt/351zEUp
New post on Flutter Dev Google group:

Flutter + Beacons + Indoor Location
Hi there! I am trying to develop something like a Strava App for indoor maps, but I am facing lots of challenges. First I was seeking for an API in which I could build over it, and I found Mapwize and Steerpath. Unfortunately, talking to an engineer from Steerpath I heard that is not quite easy

November 13, 2019 at 03:40AM by patricknasc
https://ift.tt/2NJHtrG