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

Flutter Engine license
Hi Flutter Dev, Flutter engine license is under BSD3-Clause as per the github page, But it contains GPL licence files under https://ift.tt/33Cnz7M, Our IP team reviewed flutter framework and engine repos. Engine repo having GPL files, so they

November 11, 2019 at 11:03AM by satya attili
https://ift.tt/2K99tTC
New post on /r/flutterdev subreddit:

(Beginner) I'm trying to achieve a progress bar for my pomodoro app
I have a working pomodoro app that I created for learning Flutter.I'm trying to achieve a time progress bar displayed under the time elapsed (in a form of text).I've created a getter in the stateful widget that give me the pourcentage of time elapsed (Duration _start) with the total timer choose (either 25min,5min or 30min) in seconds.
 double get pourcentage { int total; if(repos) if(tours.remainder(4) == 0) total = 1800; else total = 300; if(!repos) total = 1500; return (_start.inSeconds/total); } 
Then I have a container (the progress) inside a container (the whole bar).I've tried to give the progress container the pourcentage as a width but that doesn't work.I've tried also to use SetState in the getter but nothing changes.Any help would be nice !

November 11, 2019 at 04:04PM by Kadarach
https://ift.tt/2NAlyU2
New post on /r/flutterdev subreddit:

Flutter Tap Newsletter - Week 12
https://ift.tt/2CuLNVA

November 11, 2019 at 05:31PM by vensign
https://ift.tt/32AvO2W
New post on Flutter Dev Google group:

1 browser and 1 emulator pbr
hello, EMULATOR I have a slight problem when running app in the emulator, it starts with this message error, the app takes time to show on the device then It works ... 11/11/2019 20:16 Emulator: emulator: ERROR: VkCommonOperations.cpp:496: Failed to create Vulkan instance. *What can be

November 11, 2019 at 09:28PM by Bened
https://ift.tt/2rrWBRU
New post on /r/flutterdev subreddit:

12 Useful libraries to support development using flutter
https://ift.tt/32Ceb2v

November 11, 2019 at 10:02PM by Elixane
https://ift.tt/2O0zOEC
New post on /r/flutterdev subreddit:

Slidy 1.2, the CLI to structure and generate templates for your project adds support to flutter_bloc and mobx.
https://ift.tt/2xdPhsG

November 11, 2019 at 06:17PM by irvine5k
https://ift.tt/2XehWud
New post on /r/flutterdev subreddit:

What Chat SDK to use with Flutter?
I've used Quickblox and PubNub on other platforms before.Has anyone made a chat app with Flutter? If so, do you have any recommendations for a chat service?

November 11, 2019 at 09:38PM by Dazza5000
https://ift.tt/2QbT44z
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