New post on /r/flutterdev subreddit:
BLoC pattern how to access credentials for the API client?
I'm trying BLoC pattern in flutter, I created a repository and API client to access remote REST API.I'm creating an instance of the client and the repository in my main function and i'm passing the client as an argument to the repository.Here my problem is my API client requires some credentials to access the remote server and I'm thinking it should read the credentials from a JSON file.Also I'm confused from where I should read the JSON file, in the main function or in the API clientAlso where should I place the JSON file?
March 31, 2019 at 07:46PM by ukri_b
https://ift.tt/2YEvIq8
BLoC pattern how to access credentials for the API client?
I'm trying BLoC pattern in flutter, I created a repository and API client to access remote REST API.I'm creating an instance of the client and the repository in my main function and i'm passing the client as an argument to the repository.Here my problem is my API client requires some credentials to access the remote server and I'm thinking it should read the credentials from a JSON file.Also I'm confused from where I should read the JSON file, in the main function or in the API clientAlso where should I place the JSON file?
March 31, 2019 at 07:46PM by ukri_b
https://ift.tt/2YEvIq8
reddit
r/FlutterDev - BLoC pattern how to access credentials for the API client?
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Unable to launch with other than ${file} in launch.json
Using VS Code. My project folder has a lib/main.dart that I'd like to launch. My launch.json looks like this: { "version": "0.2.0", "configurations": [ { "name": "Flutter", "request": "launch", "type": "dart", "program":
March 31, 2019 at 08:05PM by Guyren Howe
https://ift.tt/2I3mwFV
Unable to launch with other than ${file} in launch.json
Using VS Code. My project folder has a lib/main.dart that I'd like to launch. My launch.json looks like this: { "version": "0.2.0", "configurations": [ { "name": "Flutter", "request": "launch", "type": "dart", "program":
March 31, 2019 at 08:05PM by Guyren Howe
https://ift.tt/2I3mwFV
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:
Flutter in Practice - Simple Forms
https://www.youtube.com/watch?v=VaWobMmVOWQ&feature=youtu.be
March 31, 2019 at 09:47PM by zaiste
https://ift.tt/2FGa7Vw
Flutter in Practice - Simple Forms
https://www.youtube.com/watch?v=VaWobMmVOWQ&feature=youtu.be
March 31, 2019 at 09:47PM by zaiste
https://ift.tt/2FGa7Vw
YouTube
Flutter in Practice - E11: Simple Forms
Flutter in Practice is a free programming course that teaches how to write a mobile application using Flutter framework and Dart programming language. Instea...
New post on /r/flutterdev subreddit:
Why pushing a page/screen/widget into the navigator rebuilds the previous page?
In flutter, when I do
March 31, 2019 at 10:38PM by KhaleelShaheen
https://ift.tt/2UexNd9
Why pushing a page/screen/widget into the navigator rebuilds the previous page?
In flutter, when I do
Navigator.of(context).push(route)
the new page is shown/built, but the old one is rebuilt also!. In the new page, if I navigate to a third page, the third page is shown/built, the previous one is rebuilt, and even the first one is rebuilt!!! Is this a normal situation? I have some widgets that call the server on the first page, every time I push a new page, a not-needed request is sent to the server. I don't use any state management systems except for stateful widgets. I just need clarification on how the navigator works, and why previous pages are rebuilt. Thank you.March 31, 2019 at 10:38PM by KhaleelShaheen
https://ift.tt/2UexNd9
reddit
r/FlutterDev - Why pushing a page/screen/widget into the navigator rebuilds the previous page?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Integrating Flutter within Unity?
Has someone found a way to integrate a flutter widget (the android flutter view) within Unity?I saw this project: https://pub.dartlang.org/packages/flutter_unity_widgetThis allows unity to render within flutter. But I would like the reverse. A flutter widget to render (as a texture?) inside of unity plane/cube,etc.Any ideas of the feasibility and approach to take?
March 31, 2019 at 11:36PM by yabadababoo
https://ift.tt/2I2BGLt
Integrating Flutter within Unity?
Has someone found a way to integrate a flutter widget (the android flutter view) within Unity?I saw this project: https://pub.dartlang.org/packages/flutter_unity_widgetThis allows unity to render within flutter. But I would like the reverse. A flutter widget to render (as a texture?) inside of unity plane/cube,etc.Any ideas of the feasibility and approach to take?
March 31, 2019 at 11:36PM by yabadababoo
https://ift.tt/2I2BGLt
Dart Packages
flutter_unity_widget | Flutter Package
Flutter unity 3D widget for embedding unity in flutter
New post on /r/flutterdev subreddit:
UI Dev Needed For DahliaOS (flutter / dart) !Apply Within!
Contact Our Head UI Dev: [nmcain@gmail.com](mailto:nmcain@gmail.com)Or Me: camden.o.b@gmail.com
March 31, 2019 at 11:49PM by EnderNightLord
https://ift.tt/2U6071U
UI Dev Needed For DahliaOS (flutter / dart) !Apply Within!
Contact Our Head UI Dev: [nmcain@gmail.com](mailto:nmcain@gmail.com)Or Me: camden.o.b@gmail.com
March 31, 2019 at 11:49PM by EnderNightLord
https://ift.tt/2U6071U
reddit
r/FlutterDev - UI Dev Needed For DahliaOS (flutter / dart) !Apply Within!
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
3d vs 2d apps
I read that flutter is most suitable for 2d apps (can’t do 3d apps?)Can someone define what “3d” apps are? Do you mean like e.g PUBG?
April 01, 2019 at 03:23AM by colorfulspace
https://ift.tt/2V9UDQi
3d vs 2d apps
I read that flutter is most suitable for 2d apps (can’t do 3d apps?)Can someone define what “3d” apps are? Do you mean like e.g PUBG?
April 01, 2019 at 03:23AM by colorfulspace
https://ift.tt/2V9UDQi
reddit
r/FlutterDev - 3d vs 2d apps
0 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Navigating to another page , results in previous page rebuilding.
i have a http call to upload image to server , after navigating from this page to another page , results in another http call , thus uploading the same image multiple times and this process continues . I am navigating to another page using Navigator.push method , can anybody help me in figuring out the solution to this problem.I believe this is a known issue with flutter , while we should assume that rebuilding is as intended but it results in unnecessary http calls.i have tried calling http request in initState , but did'nt worked.Thanks
April 01, 2019 at 09:23AM by FesterLord
https://ift.tt/2U7ffwb
Navigating to another page , results in previous page rebuilding.
i have a http call to upload image to server , after navigating from this page to another page , results in another http call , thus uploading the same image multiple times and this process continues . I am navigating to another page using Navigator.push method , can anybody help me in figuring out the solution to this problem.I believe this is a known issue with flutter , while we should assume that rebuilding is as intended but it results in unnecessary http calls.i have tried calling http request in initState , but did'nt worked.Thanks
April 01, 2019 at 09:23AM by FesterLord
https://ift.tt/2U7ffwb
reddit
r/FlutterDev - Navigating to another page , results in previous page rebuilding.
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter - Using StreamController and StreamSubscription
http://on.geeklearn.net/9d20a4a21d
April 01, 2019 at 10:12AM by Rogers911z
https://ift.tt/2JU3cxt
Flutter - Using StreamController and StreamSubscription
http://on.geeklearn.net/9d20a4a21d
April 01, 2019 at 10:12AM by Rogers911z
https://ift.tt/2JU3cxt
Morioh
Flutter - Using StreamController and StreamSubscription
New post on Flutter Dev Google group:
Flutter CI/CD video tutorial (ASMR)
We just released a 12 minute video detailing how to onboard your Flutter project onto Bitrise (mobile specific CI/CD platform), including how to deploy to Google Play and the App Store. Also, it's completely whispered, because ASMR: https://www.youtube.com/watch?v=Gq5dJNQGmJs
April 01, 2019 at 10:45AM by rik.haa...@bitrise.io
https://ift.tt/2uACsre
Flutter CI/CD video tutorial (ASMR)
We just released a 12 minute video detailing how to onboard your Flutter project onto Bitrise (mobile specific CI/CD platform), including how to deploy to Google Play and the App Store. Also, it's completely whispered, because ASMR: https://www.youtube.com/watch?v=Gq5dJNQGmJs
April 01, 2019 at 10:45AM by rik.haa...@bitrise.io
https://ift.tt/2uACsre
YouTube
Automating Flutter development with Bitrise, an ASMR tutorial
Continuous integration and delivery makes building amazing apps with Google’s Flutter even easier, faster and way more efficient. Check out this quick ASMR video tutorial that explains how to onboard your Flutter project on Bitrise: Automate everything from…
New post on /r/flutterdev subreddit:
Visual Studio Code autoformat line width
Anybody know how to change the autoformatting line width? It defaults to 80 chars. Tried the prettier extension along with changing prettier.printWidth... no dice. Anybody know?
April 01, 2019 at 11:14AM by starblazer13
https://ift.tt/2K4irnI
Visual Studio Code autoformat line width
Anybody know how to change the autoformatting line width? It defaults to 80 chars. Tried the prettier extension along with changing prettier.printWidth... no dice. Anybody know?
April 01, 2019 at 11:14AM by starblazer13
https://ift.tt/2K4irnI
reddit
r/FlutterDev - Visual Studio Code autoformat line width
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
ASMR video tutorial: Automating Flutter development with Bitrise, whispered
https://www.youtube.com/watch?v=Gq5dJNQGmJs
April 01, 2019 at 11:11AM by HHendrik
https://ift.tt/2UqsI1h
ASMR video tutorial: Automating Flutter development with Bitrise, whispered
https://www.youtube.com/watch?v=Gq5dJNQGmJs
April 01, 2019 at 11:11AM by HHendrik
https://ift.tt/2UqsI1h
YouTube
Automating Flutter development with Bitrise, an ASMR tutorial
Continuous integration and delivery makes building amazing apps with Google’s Flutter even easier, faster and way more efficient. Check out this quick ASMR video tutorial that explains how to onboard your Flutter project on Bitrise: Automate everything from…
New post on /r/flutterdev subreddit:
Know Your Widgets: Cupertino PageScaffold in Flutter
https://ift.tt/2WDNWGw
April 01, 2019 at 11:59AM by aeologic
https://ift.tt/2HRWbeL
Know Your Widgets: Cupertino PageScaffold in Flutter
https://ift.tt/2WDNWGw
April 01, 2019 at 11:59AM by aeologic
https://ift.tt/2HRWbeL
New post on /r/flutterdev subreddit:
Parsing JSON | Flutter
https://ift.tt/2WDFgQw
April 01, 2019 at 11:35AM by ashishrawat2911
https://ift.tt/2HQdI6V
Parsing JSON | Flutter
https://ift.tt/2WDFgQw
April 01, 2019 at 11:35AM by ashishrawat2911
https://ift.tt/2HQdI6V
Medium
Parsing JSON in Flutter
It is really confusing for beginners to understand how to parse JSON data.
New post on Flutter Dev Google group:
Animation and BLOC-Pattern
Hi, is there any example how to make an animation controller with a stream? I have ValueObservable get isTransfering => _isTransferingSubject.stream; final _isTransferingSubject = BehaviorSubject(); and want to have an animation with a sync icon (if isTransfer==true-->
April 01, 2019 at 02:11PM by Frank Weißenborn
https://ift.tt/2U6RGU5
Animation and BLOC-Pattern
Hi, is there any example how to make an animation controller with a stream? I have ValueObservable get isTransfering => _isTransferingSubject.stream; final _isTransferingSubject = BehaviorSubject(); and want to have an animation with a sync icon (if isTransfer==true-->
April 01, 2019 at 02:11PM by Frank Weißenborn
https://ift.tt/2U6RGU5
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:
Google Maps Tracking
For an app I'm writing, I am wanting to use Google Maps to track a user's walk. It will be similar to Strava or MapMyRun.
April 01, 2019 at 03:04PM by ja...@lillie.me.uk
https://ift.tt/2I4KnF8
Google Maps Tracking
For an app I'm writing, I am wanting to use Google Maps to track a user's walk. It will be similar to Strava or MapMyRun.
April 01, 2019 at 03:04PM by ja...@lillie.me.uk
https://ift.tt/2I4KnF8
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:
Flutter for Business
https://www.youtube.com/watch?reload=9&v=4bsl7XM6gns
April 01, 2019 at 03:32PM by PalVaradiNagy
https://ift.tt/2YPt5Sy
Flutter for Business
https://www.youtube.com/watch?reload=9&v=4bsl7XM6gns
April 01, 2019 at 03:32PM by PalVaradiNagy
https://ift.tt/2YPt5Sy
YouTube
Flutter for Business
Social Network for Developers ☞ https://morioh.com Developer's Store ☞ https://www.moteefe.com/store/developer?cp=WP6JDT Learn to code for free and get a dev...
New post on /r/flutterdev subreddit:
Open sourced my third Flutter app
https://ift.tt/2ODYySI
April 01, 2019 at 02:40PM by meanjan
https://ift.tt/2ODtlPM
Open sourced my third Flutter app
https://ift.tt/2ODYySI
April 01, 2019 at 02:40PM by meanjan
https://ift.tt/2ODtlPM
GitHub
itzmeanjan/locatorz
An Android App, which lets you work on Location Data, built with :heart: using Flutter - itzmeanjan/locatorz
New post on /r/flutterdev subreddit:
Processing animation in your Flutter App
https://ift.tt/2OFtxhA
April 01, 2019 at 01:59PM by tidharn
https://ift.tt/2FPeMWz
Processing animation in your Flutter App
https://ift.tt/2OFtxhA
April 01, 2019 at 01:59PM by tidharn
https://ift.tt/2FPeMWz
Linkedin
Processing animation in your Flutter App
Introduction In one of our apps we had to implement a long operation when clicking on a button, the operation has multiple phases and each phase representing a different status. Well, sound like an easy task, just show a loading indicator on the screen and…
New post on /r/flutterdev subreddit:
32. Admin side flutter e-commerce app: create brand and category
https://www.youtube.com/attribution_link?a=Jio01nYp14c&u=%2Fwatch%3Fv%3D9P6Qe7fakD4%26feature%3Dshare
April 01, 2019 at 04:25PM by kibatheseven
https://ift.tt/2WGNxDh
32. Admin side flutter e-commerce app: create brand and category
https://www.youtube.com/attribution_link?a=Jio01nYp14c&u=%2Fwatch%3Fv%3D9P6Qe7fakD4%26feature%3Dshare
April 01, 2019 at 04:25PM by kibatheseven
https://ift.tt/2WGNxDh
YouTube
32. Admin side flutter e-commerce app: create brand and category
=========MY PAYPAL LINK FOR THE DONATIONS ============ http://Paypal.me/santosenoque ========== PAYTM ACCOUNT FOR THE DONATIONS ========= 9986524715 ========...