New post on /r/flutterdev subreddit:
Building Your First Reusable Widget with Flutter
https://ift.tt/2NkpdWW
September 16, 2019 at 02:17PM by CodeTutorials
https://ift.tt/2UZv7Oa
Building Your First Reusable Widget with Flutter
https://ift.tt/2NkpdWW
September 16, 2019 at 02:17PM by CodeTutorials
https://ift.tt/2UZv7Oa
Medium
Building Your First Reusable Widget with Flutter
In this guide, I will give you an introduction to building a reusable widget with Flutter and Dart.
New post on /r/flutterdev subreddit:
Sketch to Flutter (Visual Studio)
Hi, I am a designer and was wondering how you can translate a design on sketch to stateful code within Visual Studio in Flutter? Am I able to do that without the design being compromised?
September 17, 2019 at 06:46AM by Locihub
https://ift.tt/34NAogu
Sketch to Flutter (Visual Studio)
Hi, I am a designer and was wondering how you can translate a design on sketch to stateful code within Visual Studio in Flutter? Am I able to do that without the design being compromised?
September 17, 2019 at 06:46AM by Locihub
https://ift.tt/34NAogu
reddit
Sketch to Flutter (Visual Studio)
Hi, I am a designer and was wondering how you can translate a design on sketch to stateful code within Visual Studio in Flutter? Am I able to do...
New post on /r/flutterdev subreddit:
Flutter Firebase Instagram Clone Tutorial #1: Login and Signup UI
https://youtu.be/PJr2kWgXf8s
September 17, 2019 at 08:36AM by Marcus-Ng
https://ift.tt/2LAWLy4
Flutter Firebase Instagram Clone Tutorial #1: Login and Signup UI
https://youtu.be/PJr2kWgXf8s
September 17, 2019 at 08:36AM by Marcus-Ng
https://ift.tt/2LAWLy4
YouTube
Login and Signup UI | Flutter Firebase Instagram Tutorial (Ep 1)
» FULL Flutter Firebase Instagram Bloc Course
https://www.LaunchClub.io
Welcome to my Flutter Firebase Instagram tutorial series where you will learn Flutter and create amazing apps using Dart. In this video, we will code the login and signup UI of our…
https://www.LaunchClub.io
Welcome to my Flutter Firebase Instagram tutorial series where you will learn Flutter and create amazing apps using Dart. In this video, we will code the login and signup UI of our…
New post on /r/flutterdev subreddit:
Stripe card list api is returning null !! Any suggestions
No text found
September 17, 2019 at 11:43AM by shubhhhh
https://ift.tt/2ZXXgub
Stripe card list api is returning null !! Any suggestions
No text found
September 17, 2019 at 11:43AM by shubhhhh
https://ift.tt/2ZXXgub
reddit
Stripe card list api is returning null !! Any suggestions
A subreddit for Google's crossplatform UI toolkit.
New post on /r/flutterdev subreddit:
Choosing the right strategy with dependencies when using Provider/ProxyProvider
A question for developers that have used Provider&Flutter. I am trying to set all dependencies using Provider and not using get_it or other kind of instantiation in initStateI am trying to use Provider for all dependencies and not use get_it
September 17, 2019 at 11:37AM by objectbeam
https://ift.tt/31uT7LD
Choosing the right strategy with dependencies when using Provider/ProxyProvider
A question for developers that have used Provider&Flutter. I am trying to set all dependencies using Provider and not using get_it or other kind of instantiation in initStateI am trying to use Provider for all dependencies and not use get_it
return MultiProvider( providers: [ Provider<UserRepository>(builder: (_) => FbUserRepository()), ChangeNotifierProvider<AppModel>(builder: (context) => AppModel()), ChangeNotifierProvider<OtherModel>(builder: (context) => OtherModel()), ProxyProvider3<UserRepository,OtherModel, AppModel, AppViewModel>( updateShouldNotify: (_, __) => false, initialBuilder: (_) => AppViewModel(), builder: (_, repo, otherModel, appModel, app) => app..model = appModel ..userRepository = repo, ), ],The AppViewModel(or any other viewModel used in some section of the app) has methods that will change the AppModel. Changes in AppModel will reflect in different places on the app.How I can call some start()/init() method on AppViewModel on all the dependencies are set? (I cant use the AppViewModel constructor to pass the dependencies, as they(the dependencies) are not passed on initialBuilder).
September 17, 2019 at 11:37AM by objectbeam
https://ift.tt/31uT7LD
reddit
Choosing the right strategy with dependencies when using...
A subreddit for Google's crossplatform UI toolkit.
New post on /r/flutterdev subreddit:
Free Flutter Templates from Telerik
I just came upon the following blog post from Telerik (one of the biggest 3rd party widget vendors). It seems they are going to provide free templates. Nice. :)https://www.telerik.com/blogs/how-can-we-ease-your-development-with-flutter
September 17, 2019 at 12:14PM by APopatanassov
https://ift.tt/2LAishJ
Free Flutter Templates from Telerik
I just came upon the following blog post from Telerik (one of the biggest 3rd party widget vendors). It seems they are going to provide free templates. Nice. :)https://www.telerik.com/blogs/how-can-we-ease-your-development-with-flutter
September 17, 2019 at 12:14PM by APopatanassov
https://ift.tt/2LAishJ
Telerik Blogs
Flutter – how can we sweeten your development with Flutter?
Progress is here - to enable you adapt more easily to those changes and make you more productive no matter what the technology is.
New tweet from FlutterDev:
⭐️Tencent is using Flutter throughout their business!
The company shares a common vision: create a beautiful, smooth, and connected experience. To keep this vision alive, they've used Flutter in 6 of their apps!
Watch here → https://t.co/YFgDso8RYv pic.twitter.com/Yi9noyE3Pp— Flutter (@FlutterDev) September 17, 2019
September 17, 2019 at 05:38PM
http://twitter.com/FlutterDev/status/1173984615947591680
⭐️Tencent is using Flutter throughout their business!
The company shares a common vision: create a beautiful, smooth, and connected experience. To keep this vision alive, they've used Flutter in 6 of their apps!
Watch here → https://t.co/YFgDso8RYv pic.twitter.com/Yi9noyE3Pp— Flutter (@FlutterDev) September 17, 2019
September 17, 2019 at 05:38PM
http://twitter.com/FlutterDev/status/1173984615947591680
YouTube
Tencent Apps: Flutter Developer Story
There are numerous product teams at Tencent who share one common vision: to create a beautiful, smooth, connected experience for every user. See how one of t...
New post on Flutter Dev Google group:
Call flutter method from native service
Hi guys. I have a question about the channels. Can I call my flutter app from a native (Swift/kotlin) service? I'm implementing an autofill extension for my app and I can't seem to call a method in my flutter core functions from my native app. The goal of this is to reuse my API calls made in
September 17, 2019 at 07:17PM by Sebastien Aubin
https://ift.tt/2LzVZkL
Call flutter method from native service
Hi guys. I have a question about the channels. Can I call my flutter app from a native (Swift/kotlin) service? I'm implementing an autofill extension for my app and I can't seem to call a method in my flutter core functions from my native app. The goal of this is to reuse my API calls made in
September 17, 2019 at 07:17PM by Sebastien Aubin
https://ift.tt/2LzVZkL
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:
FlutterUI - Minimal Designs - Travel app - Speed Code
https://youtu.be/QjTTbwh7Q4M
September 17, 2019 at 07:01PM by rajayogan27
https://ift.tt/2I5U9Gn
FlutterUI - Minimal Designs - Travel app - Speed Code
https://youtu.be/QjTTbwh7Q4M
September 17, 2019 at 07:01PM by rajayogan27
https://ift.tt/2I5U9Gn
YouTube
FlutterUI - Minimal Designs - Travel app - Speed Code
Need an app ? - https://rajayogan.com Follow me on twitter - https://twitter.com/rajayogan14k Other flutter videos - https://www.youtube.com/playlist?list=PL...
New post on /r/flutterdev subreddit:
Hey r/FlutterDev! Leave a comment with your App and I'll try it out and give constructive feedback.
I know that many developers are struggling with getting their first users.
I'm really curious about what all of you are building. I don't care if it's a game or some really niche thing, just share it.
It also doesn't have to be open source but it has to be made with Flutter.
I tried this with r/Entrepreneur yesterday and I received some really great things. Now I want to try this again with the community that's closest to my heart.(Please don't forget a short description to make it easier for others to find apps they might be interested in)
September 17, 2019 at 07:01PM by modulovalue
https://ift.tt/30oeP2w
Hey r/FlutterDev! Leave a comment with your App and I'll try it out and give constructive feedback.
I know that many developers are struggling with getting their first users.
I'm really curious about what all of you are building. I don't care if it's a game or some really niche thing, just share it.
It also doesn't have to be open source but it has to be made with Flutter.
I tried this with r/Entrepreneur yesterday and I received some really great things. Now I want to try this again with the community that's closest to my heart.(Please don't forget a short description to make it easier for others to find apps they might be interested in)
September 17, 2019 at 07:01PM by modulovalue
https://ift.tt/30oeP2w
reddit
Hey r/FlutterDev! Leave a comment with your App and I'll try it...
I know that many developers are struggling with getting their first users. I'm really curious about what all of you are building. I don't care...
New post on /r/flutterdev subreddit:
Flutter Web : Flutter 1.10 Adding Web Support For New & Existing Projects
https://youtu.be/8WJL2dYrLF4
September 17, 2019 at 07:00PM by imthepk
https://ift.tt/2I5Uclx
Flutter Web : Flutter 1.10 Adding Web Support For New & Existing Projects
https://youtu.be/8WJL2dYrLF4
September 17, 2019 at 07:00PM by imthepk
https://ift.tt/2I5Uclx
YouTube
Flutter Web : Flutter 1.10 Adding Web Support For New & Existing Projects
In this video, I will explain how to add web support in your new or existing flutter projects with the new Flutter 1.10 #Trending #Flutter #FlutterWeb Flutte...
New post on Flutter Dev Google group:
Flutter Video Player disposing video
Hi there, i am making app like instagram. I am having issues with video player. I am loading posts in to listview but when video player not visible its disposing video then re loading. i didnt find a good solution for loading videos. smooth and onetime
September 17, 2019 at 09:00PM by Huzeyfe Coşkun
https://ift.tt/2LSLgB2
Flutter Video Player disposing video
Hi there, i am making app like instagram. I am having issues with video player. I am loading posts in to listview but when video player not visible its disposing video then re loading. i didnt find a good solution for loading videos. smooth and onetime
September 17, 2019 at 09:00PM by Huzeyfe Coşkun
https://ift.tt/2LSLgB2
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:
How is Flutter different for app development
https://youtu.be/l-YO9CmaSUM
September 17, 2019 at 09:15PM by EngineerScientist
https://ift.tt/2QpBwE2
How is Flutter different for app development
https://youtu.be/l-YO9CmaSUM
September 17, 2019 at 09:15PM by EngineerScientist
https://ift.tt/2QpBwE2
YouTube
How is Flutter different for app development
In this video, hear Martin Aguinis from the Flutter team discuss what goes on under the hood when you create apps with Flutter and how it’s different from other approaches.
Learn everything about Flutter at → https://flutter.dev
Subscribe to Flutter! →…
Learn everything about Flutter at → https://flutter.dev
Subscribe to Flutter! →…
New post on Flutter Dev Google group:
Flutter Developer Advice
Hi guys, i was checking my contact list to make some calls and i came across an old friend contact. I put up a call and i got to know he's depressed and tired of how everything with him at the moment. What's your best advice for someone who's on the verge of giving up? Thanks in advance.
September 18, 2019 at 01:06AM by Aderoju Olaitan
https://ift.tt/2Qiw9Go
Flutter Developer Advice
Hi guys, i was checking my contact list to make some calls and i came across an old friend contact. I put up a call and i got to know he's depressed and tired of how everything with him at the moment. What's your best advice for someone who's on the verge of giving up? Thanks in advance.
September 18, 2019 at 01:06AM by Aderoju Olaitan
https://ift.tt/2Qiw9Go
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:
Pretty logger for Dio
https://ift.tt/30jEg5u
September 18, 2019 at 01:15AM by Milad_Alakarie
https://ift.tt/2LZnvqW
Pretty logger for Dio
https://ift.tt/30jEg5u
September 18, 2019 at 01:15AM by Milad_Alakarie
https://ift.tt/2LZnvqW
Dart packages
pretty_dio_logger | Flutter Package
Pretty Dio logger is a Dio interceptor that logs network calls in a pretty, easy to read format.
New post on /r/flutterdev subreddit:
Dart version
Hello there,I have a stupid question,is it better to always setup my Flutter project targeting the latest version of Dart?I guess it won't impact the smartphone compatibility? Will it impact performance or other stuff ?Thank you!
September 18, 2019 at 05:20AM by Ocelyn
https://ift.tt/305jZW4
Dart version
Hello there,I have a stupid question,is it better to always setup my Flutter project targeting the latest version of Dart?I guess it won't impact the smartphone compatibility? Will it impact performance or other stuff ?Thank you!
September 18, 2019 at 05:20AM by Ocelyn
https://ift.tt/305jZW4
reddit
Dart version
Hello there, I have a stupid question, is it better to always setup my Flutter project targeting the latest version of Dart? I guess it won't...
New post on /r/flutterdev subreddit:
What are you favorite Flutter apps?
Popular apps, diamonds in the rough, anything else. What are some good/inspiring apps that you’ve used that were made in Flutter?
September 18, 2019 at 05:10AM by shalchjr
https://ift.tt/2LAwekj
What are you favorite Flutter apps?
Popular apps, diamonds in the rough, anything else. What are some good/inspiring apps that you’ve used that were made in Flutter?
September 18, 2019 at 05:10AM by shalchjr
https://ift.tt/2LAwekj
reddit
What are you favorite Flutter apps?
Popular apps, diamonds in the rough, anything else. What are some good/inspiring apps that you’ve used that were made in Flutter?
New post on Flutter Dev Google group:
bigquery using flutter
I have a question about bigquery 1.how to read data in bigquery using flutter? 2.how to save data in bigquery using flutter? 3.how to create dataset and table in bigquery using flutter?
September 18, 2019 at 06:56AM by Mahesh Sesetti
https://ift.tt/2IcLeD1
bigquery using flutter
I have a question about bigquery 1.how to read data in bigquery using flutter? 2.how to save data in bigquery using flutter? 3.how to create dataset and table in bigquery using flutter?
September 18, 2019 at 06:56AM by Mahesh Sesetti
https://ift.tt/2IcLeD1
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 Flutter Dev Google group:
big query in flutter
how to access data using bigquery in flutter.
September 18, 2019 at 07:21AM by Mahesh Sesetti
https://ift.tt/32Ufnz3
big query in flutter
how to access data using bigquery in flutter.
September 18, 2019 at 07:21AM by Mahesh Sesetti
https://ift.tt/32Ufnz3
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:
Make Responsive App For Different Screen Sizes | Flutter
https://youtu.be/afBmGC63iIQ
September 18, 2019 at 05:58AM by prateeksharma1712
https://ift.tt/30pk0zh
Make Responsive App For Different Screen Sizes | Flutter
https://youtu.be/afBmGC63iIQ
September 18, 2019 at 05:58AM by prateeksharma1712
https://ift.tt/30pk0zh
YouTube
Flutter Responsive UI | Learning Platform App - Part 1
#Flutter #Responsive #CrossPlatform
This video mainly focuses on making the simplest layout working on multiple devices, portrait, and landscape orientation. And, you will learn tips and tricks to create consistent and responsive Flutter UI.
If you liked…
This video mainly focuses on making the simplest layout working on multiple devices, portrait, and landscape orientation. And, you will learn tips and tricks to create consistent and responsive Flutter UI.
If you liked…
New post on Flutter Dev Google group:
Add Google Cloud Function To Flutter Apps.
Anyone Can Help Me to How Can I Add Google Cloud Platform To My Flutter Application. Thank You
September 18, 2019 at 09:39AM by George Mike
https://ift.tt/2AtOKEU
Add Google Cloud Function To Flutter Apps.
Anyone Can Help Me to How Can I Add Google Cloud Platform To My Flutter Application. Thank You
September 18, 2019 at 09:39AM by George Mike
https://ift.tt/2AtOKEU
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.