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

Can this be built in flutter right now?
Hello. I'm trying to build a cross platform (android and iOS) app in which:The user selects 2 imagesCan rotate, scale, move and crop themApply a transition e.g. wipeView the transition animation and then export and share it as a video fileIs it possible to create such an app on both platforms with flutter ATM?If so, which libraries could help me?If not, is there any other contender?

November 10, 2019 at 04:30PM by logicSnob
https://ift.tt/2rxBKgl
New post on /r/flutterdev subreddit:

<b>Recap: Flutter and Dart are dominating, Interact has hatched &#128035;</b>
Hey, fellow Flutters! Here's a recap of what's been happening over the past couple of weeks in the Flutter-verse.Love it? Hate it? Let us know in the comments!Want to get it by email? <a href="https://flutterigniter.com/snacks/">Click here</a>.____&#128165; Flutter and Dart are absolutely crushing it...<strong>Utter and complete domination</strong>...Github just released it's <a href="https://octoverse.github.com/">2019 State of the Octoverse</a> report and there's nothing else to say that it appears Flutter and Dart are here to stay. Here's the TLDR;<strong>Flutter is in the top 10 Github repos</strong>...while Github stars aren’t the end-all-be-all when it comes to measuring popularity, <a href="https://twitter.com/timsneath/status/1189594253690691584">Flutter making its way into the top 10</a> is impressive given that it’s only been a thing for a little over 2 years (actually — did you know <a href="https://www.youtube.com/watch?v=PnIWl33YMwA">Flutter is almost 5 years old</a> and used to be called Sky?). The majority of the top 10 (Vue, React, vscode, etc.) are both popular and have staying power. If this milestone is a sign of things to come, expect to see more businesses adopt Flutter for their next mobile project and as a result, more jobs!<strong>Flutter is #2 in contributors</strong>...with 13k people committing their time to make an awesome framework even better.<strong>Flutter is the #2 fastest growing open source project by number of contributors</strong>...with an astounding 279% growth since it's 1.0 release in December 2018.<strong>Dart has become the</strong> <strong>FASTEST</strong> <strong>growing language on Github</strong>...get ready for this...a 532% increase in usage over 2018. Wow.So...how does Flutter actually work? &#9881;&#65039;<strong>Getting under the hood</strong>...one of the great things about frameworks, like Flutter, is that they allow us to jump right in by packaging everything up into something that “just works” without causing major anxiety. But understanding how that framework works under the hood can be extremely valuable in taking your skills to the next level. Intrigued? Then check out this <a href="https://www.didierboelens.com/2019/09/flutter-internals/">must-read article</a> on Flutter internals by <a href="https://www.didierboelens.com/">Didier Boelens</a>. Worth your time and brain-power.You can never have enough state managementWhile we’re well aware that there is no shortage of news, articles and videos about state management, there’s a few that caught our eye this week...<a href="https://blog.codemagic.io/flutter-tutorial-provider/">Provider for Humans</a>...the title says it all. While <a href="https://pub.dev/packages/provider">provider</a> isn’t the most complex package on earth, we wouldn’t exactly call it trivial. In his article, Scott does a nice job of cutting through the jargon and getting down to exactly what provider is and how it works.<a href="https://medium.com/flutter-community/making-sense-all-of-those-flutter-providers-e842e18f45dd">Making sense of all those Providers</a>...Provider, ListenableProvider, ChangeNotifierProvider, StreamProvider, FutureProvider...holy sh*t. Great article by <a href="https://medium.com/@suragch">Suragch</a> that breaks down each type of provider and what it does.<a href="https://medium.com/flutter-community/bloc-library-v1-0-0-is-here-1f64bd6d3518">Bloc hits 1.0...</a>the big changes? Alignment with the core Dart Stream/Sink API and new companion package called <a href="https://pub.dev/packages/bloc_test">bloc_test</a> that makes testing blocs easy-peasy.Build, test, deploy — repeat!<strong>So you’ve written a killer Flutter app</strong>...but don’t forget about building, testing and deploying it...automagically!<strong>Gotta keep em’ separated</strong>...different endpoints, different API keys, different builds for local…
New post on /r/flutterdev subreddit:

Android Emulator that supports Hot Reload?
Does anyone know how to use an Android Emulator with hot reload? I'm using Android studio, but all of the emulators don't have hot reload.

November 10, 2019 at 08:08PM by Ultra1101
https://ift.tt/2K5KErA
New post on /r/flutterdev subreddit:

How much data can you realistically store using a SQLite DB
I published a golf scorecard "EasyScore", written in Flutter. Is currently available in the app store and playstore. I want to save hole statistics e.g. strokes, penalty strokes, putt, etc. locally on the phone using SQLite. This is a pet project (free) so don't want to store in a cloud DB (yet). A couple questions.Given that there are 18 holes in round and a golfer can easily play 3 rounds a week. How realistic is it to save that much data in a SQLite DB on the mobile phone? I will probably limit how much history they can store and use a rolling average technique. I am curious if anyone has used SQLite to store local data and provide me some realistic guidelines on capacity and performance? I am very familiar with indexing and RDBM techniques.I truly appreciate any feedback on this topic.

November 11, 2019 at 12:37AM by ByteRocket
https://ift.tt/2NCYqV3
New post on Flutter Dev Google group:

Twitter login exception flutter
I am working on flutter project and I tried with Twitter login using flutter_twitter
New post on /r/flutterdev subreddit:

Does flutter have any comprehensive charting libraries?
See title. Does flutter have customizable chart libraries or is that not a thing?

November 11, 2019 at 09:08AM by notacooleagle
https://ift.tt/36Ssrru
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