New post on /r/flutterdev subreddit:
Landing Flutter jobs as a web developer
How much of a factor does experience in native mobile development have in landing a job as a Flutter developer?I see the value of Flutter but I feel as though Android developers will always have an upperhand when landing jobs. And therefore I'm more inclined to invest my current web development skills in something like ReactNative or NativeScript.Am I wrong?
March 11, 2019 at 09:47PM by johanjurie
https://ift.tt/2JkyAoH
Landing Flutter jobs as a web developer
How much of a factor does experience in native mobile development have in landing a job as a Flutter developer?I see the value of Flutter but I feel as though Android developers will always have an upperhand when landing jobs. And therefore I'm more inclined to invest my current web development skills in something like ReactNative or NativeScript.Am I wrong?
March 11, 2019 at 09:47PM by johanjurie
https://ift.tt/2JkyAoH
reddit
r/FlutterDev - Landing Flutter jobs as a web developer
0 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
Animated Stream List | display a Stream<List<E>> with animations, a reactive wrapper for AnimatedList
https://ift.tt/2TCEcyl
March 11, 2019 at 11:01PM by DawidBota
https://ift.tt/2VR8tqu
Animated Stream List | display a Stream<List<E>> with animations, a reactive wrapper for AnimatedList
https://ift.tt/2TCEcyl
March 11, 2019 at 11:01PM by DawidBota
https://ift.tt/2VR8tqu
Dart Packages
animated_stream_list | Flutter Package
animated_stream_list Flutter and Dart package - A Flutter library to easily display a list with animated changes from a Stream>. It's like StreamBuilder + ListView.Builder with animations.
New post on /r/flutterdev subreddit:
How to use Streams in Dart (Part 1)
https://creativebracket.com/how-to-use-streams-in-dart-1/
March 11, 2019 at 11:18PM by jeropp
https://ift.tt/2HsfABN
How to use Streams in Dart (Part 1)
https://creativebracket.com/how-to-use-streams-in-dart-1/
March 11, 2019 at 11:18PM by jeropp
https://ift.tt/2HsfABN
Creative Bracket
How to use Streams in Dart (Part 1) – Creative Bracket
In this article I will attempt to demystify the use of streams in Dart. Streams as a concept, refers to the channel by which data flows from point A to point B. In this channel we are able to perform various transformations to the data that is "read in" before…
New post on /r/flutterdev subreddit:
How to connect user inputs to Google sheets
Hi, I'm very new to OOP and flutter. I have experience in Python, but app development support is pretty garbage.I want to create an app in flutter that will allow users to fill out a form which will then use the inputs to populate a Google sheet.I know there is Google sheet API available, but are there any examples of this in practice?
March 12, 2019 at 01:34AM by dirtyuzbek
https://ift.tt/2J9Z5gi
How to connect user inputs to Google sheets
Hi, I'm very new to OOP and flutter. I have experience in Python, but app development support is pretty garbage.I want to create an app in flutter that will allow users to fill out a form which will then use the inputs to populate a Google sheet.I know there is Google sheet API available, but are there any examples of this in practice?
March 12, 2019 at 01:34AM by dirtyuzbek
https://ift.tt/2J9Z5gi
reddit
r/FlutterDev - How to connect user inputs to Google sheets
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Crash Courss - 1 - Installation and Overview
https://ift.tt/2VRlmRq
March 12, 2019 at 02:28AM by sarusethi
https://ift.tt/2u1hwtd
Flutter Crash Courss - 1 - Installation and Overview
https://ift.tt/2VRlmRq
March 12, 2019 at 02:28AM by sarusethi
https://ift.tt/2u1hwtd
TheTechnoCafe
Flutter Crash Course - 1 - Installation and Overview - TheTechnoCafe
Welcome to the Flutter crash course tutorial series. So you heard about Flutter? saw it popping up in the news everyday, and now you want to get a taste...
New post on /r/flutterdev subreddit:
Flutter Desktop Launcher no Windows
https://ift.tt/2EWst46
March 12, 2019 at 03:14AM by AlvaroVasconcelos
https://ift.tt/2EXdver
Flutter Desktop Launcher no Windows
https://ift.tt/2EWst46
March 12, 2019 at 03:14AM by AlvaroVasconcelos
https://ift.tt/2EXdver
Medium
Flutter Desktop Launcher no Windows
Olá Fluteiros, hoje irei passa pra vocês um pequeno artigo explicando passo a passo de como colocar o flutter para executar no Windows…
New post on /r/flutterdev subreddit:
Multiple StreamBuilders one BLoC? Better architecture ideas?
I trying to find the "right" way to use BLoC and StreamBuilders to make my apps reactive.The problem is as follows:- There is a list of elements subscribed to a Stream of List<Item>
- There is also a FAB which should be enabled / disabled depending if the list is has content or is loading.If I use two StreamBuilders then I find myself with this logic duplicated:
March 12, 2019 at 04:13AM by joaquinrok
https://ift.tt/2TxtnhF
Multiple StreamBuilders one BLoC? Better architecture ideas?
I trying to find the "right" way to use BLoC and StreamBuilders to make my apps reactive.The problem is as follows:- There is a list of elements subscribed to a Stream of List<Item>
- There is also a FAB which should be enabled / disabled depending if the list is has content or is loading.If I use two StreamBuilders then I find myself with this logic duplicated:
StreamBuilder<Model>( stream: bloc.stream, initialData: [[not sure what to put here if using a BehaviorSubject]], builder: (context, snapshot) { switch (snapshot.status) { [[render depending on the status]] } })I doesn't seem good to have the logic of "depending if the stream is loading or not render this or that" duplicated on different parts of the widget tree.Any thoughts?
March 12, 2019 at 04:13AM by joaquinrok
https://ift.tt/2TxtnhF
reddit
r/FlutterDev - Multiple StreamBuilders one BLoC? Better architecture ideas?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Introduction to Programming with Dart | Ep 1 | Basics
https://youtu.be/FDPTMbu6iQQ
March 12, 2019 at 06:18AM by imthepk
https://ift.tt/2Cc912U
Introduction to Programming with Dart | Ep 1 | Basics
https://youtu.be/FDPTMbu6iQQ
March 12, 2019 at 06:18AM by imthepk
https://ift.tt/2Cc912U
YouTube
Introduction to Programming with Dart | Ep 1 | Basics
In this video, I will explain what is programming and how it works and more. #Trending #Dart #Programming Read my articles on medium - https://medium.com/@im...
New post on /r/flutterdev subreddit:
Broken hot reload?
Anyone any idea how to fix hot reload on vs code.
March 12, 2019 at 07:09AM by BlueBoxxx
https://ift.tt/2Tx2URD
Broken hot reload?
Anyone any idea how to fix hot reload on vs code.
March 12, 2019 at 07:09AM by BlueBoxxx
https://ift.tt/2Tx2URD
reddit
r/FlutterDev - Broken hot reload?
0 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
An Introduction to Flutter: The Basics
http://dev.edupioneer.net/097e226dcb
March 12, 2019 at 09:36AM by RonEng909
https://ift.tt/2F5xpFc
An Introduction to Flutter: The Basics
http://dev.edupioneer.net/097e226dcb
March 12, 2019 at 09:36AM by RonEng909
https://ift.tt/2F5xpFc
New post on Flutter Dev Google group:
Flutter website ui broken CSS problem/content alignment problem
Hi, There is an alignment problem in the flutter website (https://flutter.dev/). Here in the 'Who is Using?' section, there is a grid system where there is the left text content section and the right image content section. The Images in the right are stretched and they do not fit the
March 12, 2019 at 10:27AM by Asween Ravindran
https://ift.tt/2UDgrnf
Flutter website ui broken CSS problem/content alignment problem
Hi, There is an alignment problem in the flutter website (https://flutter.dev/). Here in the 'Who is Using?' section, there is a grid system where there is the left text content section and the right image content section. The Images in the right are stretched and they do not fit the
March 12, 2019 at 10:27AM by Asween Ravindran
https://ift.tt/2UDgrnf
flutter.dev
Flutter - Build apps for any screen
Flutter transforms the entire app development process. Build, test, and deploy beautiful mobile, web, desktop, and embedded apps from a single codebase.
New post on Flutter Dev Google group:
Sqflite – playing around with Flutter and simple database
Find out how to setup a database for your Flutter projects using sqflite
March 12, 2019 at 10:35AM by Applandeo
https://ift.tt/2F074qO
Sqflite – playing around with Flutter and simple database
Find out how to setup a database for your Flutter projects using sqflite
March 12, 2019 at 10:35AM by Applandeo
https://ift.tt/2F074qO
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Building TikTok's UI in Flutter - Part 2
If any of you found value in the previous post on breaking down your Flutter UI into manageable and easier to code pieces then check out the latest installment in that series. Where we take the end of the last tutorial and turn it into something that looks exactly like TikTok.https://medium.com/filledstacks/building-tiktoks-ui-in-flutter-part-2-build-the-small-parts-42fb2089d605?source=friends_link&sk=b5d69e88615c356eac333436e4d4c04e
March 12, 2019 at 11:34AM by Filledstacks
https://ift.tt/2J6zDII
Building TikTok's UI in Flutter - Part 2
If any of you found value in the previous post on breaking down your Flutter UI into manageable and easier to code pieces then check out the latest installment in that series. Where we take the end of the last tutorial and turn it into something that looks exactly like TikTok.https://medium.com/filledstacks/building-tiktoks-ui-in-flutter-part-2-build-the-small-parts-42fb2089d605?source=friends_link&sk=b5d69e88615c356eac333436e4d4c04e
March 12, 2019 at 11:34AM by Filledstacks
https://ift.tt/2J6zDII
Medium
Building TikTok’s UI in Flutter — Part 2: Build the small parts.
Learn how to take a mediocre layout result to something that looks clean and polished by building custom widgets in Flutter.
New post on /r/flutterdev subreddit:
Introduction to Flutter: Building iOS and Android Apps from a Single Codebase
http://tech.learn4startup.com/a44e0c3cb3
March 12, 2019 at 10:59AM by Jewell980
https://ift.tt/2Hg5ULC
Introduction to Flutter: Building iOS and Android Apps from a Single Codebase
http://tech.learn4startup.com/a44e0c3cb3
March 12, 2019 at 10:59AM by Jewell980
https://ift.tt/2Hg5ULC
New post on /r/flutterdev subreddit:
How to use Streams in Dart (Part 1)
https://ift.tt/2Heax90
March 12, 2019 at 10:50AM by jeropp
https://ift.tt/2HutUKk
How to use Streams in Dart (Part 1)
https://ift.tt/2Heax90
March 12, 2019 at 10:50AM by jeropp
https://ift.tt/2HutUKk
Creative Bracket
How to use Streams in Dart (Part 1) - Creative Bracket
In this article I will attempt to demystify the use of streams in Dart. Streams as a concept, refers to the channel by which data flows from point A to point B. In this channel we are able to perform various transformations to the data that is "read in" before…
New post on /r/flutterdev subreddit:
Flutter’s Key Difference: Owning Every Pixel
https://ift.tt/2Hgmrin
March 12, 2019 at 09:55AM by tomgilder
https://ift.tt/2VWnKqj
Flutter’s Key Difference: Owning Every Pixel
https://ift.tt/2Hgmrin
March 12, 2019 at 09:55AM by tomgilder
https://ift.tt/2VWnKqj
Medium
Flutter’s Key Difference: Owning Every Pixel
There’s been plenty of comparing Flutter with other cross-platform mobile frameworks. But the key difference is often overlooked or…
New post on /r/flutterdev subreddit:
HUMP DAY Q&A ANNOUNCEMENT: Martin Aguinis tomorrow (18:00 UTC)
Hump Day Q&A is an all-day, live help session in Zoom. From time to time, we have guests who join us so that YOU, the Flutter community to directly ask them any questions you have.Feel free to join us tomorrow and put forward any questions you have to Martin Aguinis or pop on at any time tomorrow if you want to discuss Flutter / get help with Flutter.Here's an URL link to join: http://tinyurl.com/humpdayqanda
March 12, 2019 at 01:49PM by MarkOSullivan
https://ift.tt/2u1HyfR
HUMP DAY Q&A ANNOUNCEMENT: Martin Aguinis tomorrow (18:00 UTC)
Hump Day Q&A is an all-day, live help session in Zoom. From time to time, we have guests who join us so that YOU, the Flutter community to directly ask them any questions you have.Feel free to join us tomorrow and put forward any questions you have to Martin Aguinis or pop on at any time tomorrow if you want to discuss Flutter / get help with Flutter.Here's an URL link to join: http://tinyurl.com/humpdayqanda
March 12, 2019 at 01:49PM by MarkOSullivan
https://ift.tt/2u1HyfR
Zoom Video
Join our Cloud HD Video Meeting now
Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat, and webinars across mobile, desktop, and room systems. Zoom Rooms is the original software-based conference room solution…
New post on /r/flutterdev subreddit:
Flutter blog: Handling firebase events
https://www.youtube.com/attribution_link?a=dFj4gWBTe6g&u=%2Fwatch%3Fv%3DcvU5My3RD40%26feature%3Dshare
March 12, 2019 at 02:34PM by kibatheseven
https://ift.tt/2TEjxtT
Flutter blog: Handling firebase events
https://www.youtube.com/attribution_link?a=dFj4gWBTe6g&u=%2Fwatch%3Fv%3DcvU5My3RD40%26feature%3Dshare
March 12, 2019 at 02:34PM by kibatheseven
https://ift.tt/2TEjxtT
YouTube
Flutter blog: Handling firebase events
On this video you are going to learn how to handle firebase events on your flutter app: https://github.com/Santos-Enoque/flutter_blog_app ======== CONTACT ==...
New post on Flutter Dev Google group:
Problems with Plugin ChannelMethod mocking
Hello, I'm writing a flutter plugin for handling volume and I try to write some test before publishing. I'm having a hard time getting the mocking of the channel methods right, as they always return null. Code snippet: void main() { group("volume state", () { MockMethodChannel
March 12, 2019 at 02:59PM by Patrick Haller
https://ift.tt/2F6OMWb
Problems with Plugin ChannelMethod mocking
Hello, I'm writing a flutter plugin for handling volume and I try to write some test before publishing. I'm having a hard time getting the mocking of the channel methods right, as they always return null. Code snippet: void main() { group("volume state", () { MockMethodChannel
March 12, 2019 at 02:59PM by Patrick Haller
https://ift.tt/2F6OMWb
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Asymmetric Key Generation in Flutter
https://ift.tt/2HvoHl9
March 12, 2019 at 05:02PM by Elixane
https://ift.tt/2Hg0Kz4
Asymmetric Key Generation in Flutter
https://ift.tt/2HvoHl9
March 12, 2019 at 05:02PM by Elixane
https://ift.tt/2Hg0Kz4
Medium
Asymmetric Key Generation in Flutter
Exploring how to create and use Asymmetric Keys in Flutter using PointyCastle.