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

Looking fo feedback on JobsinFlutter.io - A dedicated Flutter job board for you
I hit publish. There we go it launched!I went from buying WebFlow to having a launch ready site in about a week, mostly because I’ve not had much more time to dedicate to the project.For those that don’t know, this site is dedicated to Jobs in Flutter. Finding the best jobs for Google’s latest cross-platform tech. It’s similar to React in many ways which is owned by Facebook.I started this project mostly because we’re using this tech for my main startup, Skipr, as such we needed to find developers and this was difficult to do.So there were a few decent sites, but nothing serious and nothing that good looking. I thought to myself I could do better to be honest.Previously, I had launched Jobs in XR with moderate success in the niche field, so this was a good starting point in terms of experience.Why do Flutter?
Facebook released React nearly 5 years ago now, and it has been widely used across the web. Google has seen this as an opportunity to challenge this with a new front-end tech which would fix a lot of the issues React has.The StackOverflow Survey of 2019, also indicated that React Native is more wanted in comparison to Flutter. This tells us that there are more React Native jobs out there, in comparison to Flutter. Flutter is now in the Top 3 most loved frameworks, which is pretty damn epic!Giving Back
So the opportunity for me was to help foster this new technology, especially as I use it daily, so it only made sense that I can give back to the community. I’m especially keen to look out for contributors and people that can help this community grow.What’s Next?
I’m planning on adding a lot of resources, adding members profiles, salary reviews, and much more.The site is launched now, so let’s see how it goes! Feel free to help share the site and if you know anyone hiring Flutter developers, then send them my way!Looking for ideas of what you'd like to see on the site too.

March 01, 2020 at 12:57AM by tobyallen007
https://ift.tt/386N2rb
New post on /r/flutterdev subreddit:

Flutter Bloc: Cryptocurrency App Tutorial (Ep 1)
https://www.youtube.com/watch?v=GJYnk4nBju8

February 29, 2020 at 06:04PM by Marcus-Ng
https://ift.tt/38dlSio
New post on Flutter Dev Google group:

How to implement Timer reliably (persistent)
In my application, It needs a timer to asynchronously launch a new UI screen when the timer expires. The following code shows the desired semantics: Timer t = Timer(Duration(seconds: myDuration), () { askQuestion('How are you doing?'); }); // Maybe later, before the timer goes

March 01, 2020 at 02:15AM by Yu Shen
https://ift.tt/2vtG1n1
New post on /r/flutterdev subreddit:

How do you organize functions in a large app? (providers vs controllers vs services ...)
My state management solution of choice is ChangeNotifier + Provider, so I create all my ChangeNotifier classes in a folder called providers. However, sometimes I require classes that only have static functions. For example, returning true or false if the app is in the dark theme. I usually put these in a services folder.Do you do something similar? I've seen a few apps (like this one) with a folder called controllers, and I'm not entirely sure which classes/functions go there and why.Are there any good or recommended practices on how to structure your large application's functions?

March 01, 2020 at 02:45AM by themindstorm
https://ift.tt/2T9TA44
New post on /r/flutterdev subreddit:

Trouble with gestures
Hi,I am having some trouble with basic gesture detection. I have two widgets, and I am start pan gesture on first one and then ending the gesture on another widget - Think of it as a swipe from one widget to another. How do I go about detecting whether the person dragged till the second widget. There is onPanEnd available but that doesn't help. I can't use draggable and drag target because I don't actually want to drag my widget to another, just swipe.Would appreciate any help.

March 01, 2020 at 03:17AM by chancemehmu
https://ift.tt/2wU9VRO
New post on /r/flutterdev subreddit:

ink_page_indicator - Page indicators for Flutter
https://ift.tt/2I4ZQE7

March 01, 2020 at 10:44AM by bendixmahnke
https://ift.tt/32EXrcB
New post on /r/flutterdev subreddit:

Nile Gift App
Nile gift is a Vertical Timeline Ordered by the date that allows you to:Navigate through ancient Egyptian characters (deity, pharaohs) learn more about them, their stories, images, and videos with fully animated and illustrated characters.Provide the ability to locate characters monuments and order uber or any other cap service to the monument directlyThe App built with Flutter using bloc pattern for state managementThe App is available on Google Play: https://play.google.com/store/apps/details?id=com.mohanedy98.gift_of_the_nileAnd On GitHub : GitHub Nile Gift

March 01, 2020 at 10:54AM by mohaned_y98
https://ift.tt/2VyQOXR
New post on /r/flutterdev subreddit:

FlutterForce — Week 66
https://ift.tt/389IBw0

March 01, 2020 at 11:38AM by flutterist
https://ift.tt/39oQuyM
New post on /r/flutterdev subreddit:

How would you achieve local data persistence when remote versions of the same data are returned as nested JSON objects?
When the server stores data in a MongoDB database and is accessed through GraphQL, it would be cool if local/cached versions of the same data could be stored similarly - in some sort of local NoSQL data store.However, from my research it looks like there aren't that many data persistence options available in Flutter and the best one available is SQFLite. If I use SQFLite, though, I have to wrangle different formats of the same data - the nested-object NoSQL/GraphQL format and the "separate objects joined through relations" format of SQL.Has anyone dealt with this before? Even if you're not using MongoDB/GraphQL in your remote backend, your API likely still returns nested objects which can't be stored as-is in your local SQL DB.So how would you deal with this issue and achieve clean syncing of local and remote data without it turning into a mess?

March 01, 2020 at 12:37PM by fabis
https://ift.tt/3anQPCh
New post on /r/flutterdev subreddit:

Print on the WEB
Hey allIs there a way to print a document using Flutter form the web?Right now my project use blue_thermal_printer and is working just fine on Android. But now I'm implementing the app using Flutter Web.Thank you all.

March 01, 2020 at 06:51PM by DanielRamiz
https://ift.tt/2Tfk8Bg
New post on /r/flutterdev subreddit:

Write fully functional list view with infinite scrolling a few lines of code.
I know writing same thing multiple times is boring. In my development experience I made lots of list widgets for different proposes. Yesterday I wanted to make a list widget that supports lots of features.Firstly you need to import listutils package. It will import a widget called CustomListView. The main feature is ListAdapter. You could use NetworkListAdapter or write your own adapter. Adapters is a provider for list item. It supports pagination (offset and limiting).Here's an example that uses NetworkListAdapter.
CustomListView( loadingBuilder: CustomListLoading.defaultBuilder, itemBuilder: (context, index, item) { return ListTile( title: Text(item['title']), ); }, adapter: NetworkListAdapter( url: 'https://jsonplaceholder.typicode.com/posts', limitParam: '_limit', offsetParam: '_start', ), ); 
pub: https://pub.dev/packages/listutils
github: https://github.com/TheMisir/flutter-listutilsThanks for reading 😊

March 01, 2020 at 07:45PM by zMisir
https://ift.tt/2uJT0kn
New post on /r/flutterdev subreddit:

Animations have always been hard to learn. I am writing a series of tutorials to explain step by step how animations work in Flutter and how to use them practically. Here is part 2: How To Use Tween | Learn All About Flutter Animations
https://ift.tt/2wohW11

March 01, 2020 at 08:07PM by cmprogrammers
https://ift.tt/38bZJ4i
New post on Flutter Dev Google group:

Troubleshooting iOS build
I am trying to build for iOS and am running into issues. Any help would be appreciated. I am just trying to get the app onto a single physical test device to hand off to a tester. I am encountering the following errors: Running Xcode build...

March 01, 2020 at 10:57PM by Daniel Legut
https://ift.tt/2TcuX6N
New post on /r/flutterdev subreddit:

Hello, I just created my first Flutter package, would you mind checking it? :)
https://ift.tt/38fHTNH

March 01, 2020 at 11:50PM by gaspard-m
https://ift.tt/2TftT2d
New post on /r/flutterdev subreddit:

Dartfmt is sometimes not working in Android Studio 3.6
I am having a weird issue where dartfmt is sometimes not working very smoothly in my IDE- Android Studio 3.6, after running dartfmt multiple times (right click and select "Reformat code ..." / Keybd shortcut - option + command + L (mac) ) it fails to format my code.Here's a snapshot of how the code is rendered. https://imgur.com/a/VmsZdZtIs anyone else facing this same problem?

March 02, 2020 at 01:36AM by som88
https://ift.tt/2uKx4ph
New post on /r/flutterdev subreddit:

Use this dart package to easily share data among different parts of application. Pub/Sub pattern.
https://ift.tt/3cn0aMf

March 02, 2020 at 02:58AM by shreyaspatil99
https://ift.tt/2Tfc82Q
New post on /r/flutterdev subreddit:

My first published library to help dump out forms quickly - quick_form
https://ift.tt/32EfEaa

March 02, 2020 at 02:45AM by HaMMeReD
https://ift.tt/38a5781
New post on Flutter Dev Google group:

Modification: Project description when creating a new project
Hello. I'd love to point out what I discovered while using flutter with Android Studio. When you are asked to create a project description, if you write, say "*A sample project: flutter-01*", this will give an error after the project has been built. This is because, the ":" will be interpreted in

March 02, 2020 at 03:50AM by Francis Ocholi
https://ift.tt/2TrlVSB