New post on /r/flutterdev subreddit:
video_player on init
So here I am kinda lost trying to figure this problem out.Using the video_player package, how would you make the video initialize when pushing to a new page?I tried doing the following in initState() aswell as other possible solutions.
February 19, 2019 at 10:14PM by Maltmax
http://bit.ly/2Ir9Nyz
video_player on init
So here I am kinda lost trying to figure this problem out.Using the video_player package, how would you make the video initialize when pushing to a new page?I tried doing the following in initState() aswell as other possible solutions.
setState(() { _controller.play(); });I hope you know what I mean and have an idea!
February 19, 2019 at 10:14PM by Maltmax
http://bit.ly/2Ir9Nyz
Dart packages
video_player | Flutter package
Flutter plugin for displaying inline video with other Flutter widgets on Android, iOS, macOS and web.
New post on /r/flutterdev subreddit:
Recommended way to share data between BLoCs
After spend time learning Flutter UI design it is time to learn state management mainly BLoC (I know the basics of scoped_model).After reading posts and watching videos, I started implementing the BLoC pattern. I need to know if is there a recommend way to share data between blocs? (pass through constructor doesn't a good practice).With scoped_model is easy as we build our model before the app is launched and we get model instance through ScopeModelDescendant. (sorry about my english)
February 19, 2019 at 11:40PM by PedroMassango
http://bit.ly/2GPw6M1
Recommended way to share data between BLoCs
After spend time learning Flutter UI design it is time to learn state management mainly BLoC (I know the basics of scoped_model).After reading posts and watching videos, I started implementing the BLoC pattern. I need to know if is there a recommend way to share data between blocs? (pass through constructor doesn't a good practice).With scoped_model is easy as we build our model before the app is launched and we get model instance through ScopeModelDescendant. (sorry about my english)
February 19, 2019 at 11:40PM by PedroMassango
http://bit.ly/2GPw6M1
reddit
r/FlutterDev - Recommended way to share data between BLoCs
1 vote and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
How to test flutter_redux apps?
I'm playing with flutter_redux. Wanted to write some tests but encounter problem how to mock Store.
Tried this but then getting
February 20, 2019 at 06:43AM by dawidhyzy
https://ift.tt/2Ej2WDo
How to test flutter_redux apps?
I'm playing with flutter_redux. Wanted to write some tests but encounter problem how to mock Store.
Tried this but then getting
NoSuchMethodError
:class MockStore extends Mock implements Store<AppState> {}
Do you have any examples of how to test apps using flutter_redux?February 20, 2019 at 06:43AM by dawidhyzy
https://ift.tt/2Ej2WDo
Dart packages
flutter_redux | Flutter Package
A set of utility Widgets that Provide and Connect to a Redux Store
New post on /r/flutterdev subreddit:
Flutter with cmu sphinx language model
i was wondering is there a way, or a plugin to use sphinx/pocket sphinx model in android flutter app for voice recognition .. Planning to train a model for my language since google doesnt have voice recognition in my language ..
February 20, 2019 at 08:39AM by golhioli
https://ift.tt/2TZ9ooe
Flutter with cmu sphinx language model
i was wondering is there a way, or a plugin to use sphinx/pocket sphinx model in android flutter app for voice recognition .. Planning to train a model for my language since google doesnt have voice recognition in my language ..
February 20, 2019 at 08:39AM by golhioli
https://ift.tt/2TZ9ooe
reddit
r/FlutterDev - Flutter with cmu sphinx language model
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter vs Xamarin
I don't know if this is going to invite a framework war, but I'm interested to hear your views.If you were developing an app with literally zero mobile experience (but extensive full-stack experience including MVVM), would you choose Flutter over Xamarin, and why?The priority is developer speed, so the main thing that's caught my eye is hot reloading. I've wasted so much time in the past just waiting for things to build. Secondary priority is build tooling.
February 20, 2019 at 11:25AM by aviniumau
https://ift.tt/2T52mRD
Flutter vs Xamarin
I don't know if this is going to invite a framework war, but I'm interested to hear your views.If you were developing an app with literally zero mobile experience (but extensive full-stack experience including MVVM), would you choose Flutter over Xamarin, and why?The priority is developer speed, so the main thing that's caught my eye is hot reloading. I've wasted so much time in the past just waiting for things to build. Secondary priority is build tooling.
February 20, 2019 at 11:25AM by aviniumau
https://ift.tt/2T52mRD
reddit
r/FlutterDev - Flutter vs Xamarin
4 votes and 8 comments so far on Reddit
New post on /r/flutterdev subreddit:
Declarative programming with flutter
Hello everyone,I am new to flutter. I have basic programming knowledge(conditional statements, loops, oop etc). I am accustomed to writing code imperatively and I am having a lot of trouble understanding the syntax for flutter. I don't understand declarative programming. Everything I read just says how declarative programing says "what to do" vs imperative says " how to do it". This is not helpful when trying to write in a declarative way for me. Could someone recommend me a resource to learn declarative programming?
February 20, 2019 at 02:32PM by afdal_khan
https://ift.tt/2tvofve
Declarative programming with flutter
Hello everyone,I am new to flutter. I have basic programming knowledge(conditional statements, loops, oop etc). I am accustomed to writing code imperatively and I am having a lot of trouble understanding the syntax for flutter. I don't understand declarative programming. Everything I read just says how declarative programing says "what to do" vs imperative says " how to do it". This is not helpful when trying to write in a declarative way for me. Could someone recommend me a resource to learn declarative programming?
February 20, 2019 at 02:32PM by afdal_khan
https://ift.tt/2tvofve
reddit
r/FlutterDev - Declarative programming with flutter
1 vote and 1 comment so far on Reddit
New post on Flutter Dev Google group:
If Statuscode == 200 (json), How do I navigate new page?
Hi, I English is poor. I used this sample code. https://ift.tt/2tuAkAJ ... and statusCode == 200 I want to navigate another new page.. How do I do it? Please give an answer with code.
February 20, 2019 at 05:11PM by Bhanuka Isuru
https://ift.tt/2GUow2G
If Statuscode == 200 (json), How do I navigate new page?
Hi, I English is poor. I used this sample code. https://ift.tt/2tuAkAJ ... and statusCode == 200 I want to navigate another new page.. How do I do it? Please give an answer with code.
February 20, 2019 at 05:11PM by Bhanuka Isuru
https://ift.tt/2GUow2G
flutter.io
Fetch data from the internet
Fetching data from the internet is necessary for most apps. Luckily, Dart andFlutter provide tools for this type of work.## Directions 1. Add the `http` package 2. Make a network request using the `http` package 3. Convert the response into a custom Dart…
New post on /r/flutterdev subreddit:
DB file is overwritten on update
I have a database file in my app. However, it gets overwritten whenever I push an update to the app. How do I prevent this? I am using the NoSQL objectdb plugin.
February 20, 2019 at 05:31PM by GotRedditFever
https://ift.tt/2V9OHGA
DB file is overwritten on update
I have a database file in my app. However, it gets overwritten whenever I push an update to the app. How do I prevent this? I am using the NoSQL objectdb plugin.
February 20, 2019 at 05:31PM by GotRedditFever
https://ift.tt/2V9OHGA
reddit
r/FlutterDev - DB file is overwritten on update
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
FlutterUI - Minimal Designs - Profile
https://youtu.be/Hgy0XJdCeKA
February 20, 2019 at 05:12PM by rajayogan27
https://ift.tt/2EiKnPt
FlutterUI - Minimal Designs - Profile
https://youtu.be/Hgy0XJdCeKA
February 20, 2019 at 05:12PM by rajayogan27
https://ift.tt/2EiKnPt
YouTube
FlutterUI - Minimal Designs - Profile
Need an app ? - https://rajayogan.com
Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponCode=SPECOFF
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw…
Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponCode=SPECOFF
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw…
New post on Flutter Dev Google group:
It's All Widgets
Trying to submit my all to the https://ift.tt/2zJJwqN site but I am getting an error on submissions. It goes though so I know the validation clears then it thrown an exception on the next screen. There isn't contact info on the site. Does anyone know who runs this so that I can submit my
February 20, 2019 at 05:59PM by Brennan Altringer
https://ift.tt/2GQKNOK
It's All Widgets
Trying to submit my all to the https://ift.tt/2zJJwqN site but I am getting an error on submissions. It goes though so I know the validation clears then it thrown an exception on the next screen. There isn't contact info on the site. Does anyone know who runs this so that I can submit my
February 20, 2019 at 05:59PM by Brennan Altringer
https://ift.tt/2GQKNOK
It's All Widgets!
Flutter Apps | It's All Widgets!
An open list of example apps made with Google Flutter include many open source samples.
New post on /r/flutterdev subreddit:
Learning the BLoC Pattern by David McCreary
https://m.youtube.com/watch?feature=youtu.be&v=tJpn9RwZz8Q
February 20, 2019 at 09:02PM by Purple_Pizzazz
https://ift.tt/2SiBQ37
Learning the BLoC Pattern by David McCreary
https://m.youtube.com/watch?feature=youtu.be&v=tJpn9RwZz8Q
February 20, 2019 at 09:02PM by Purple_Pizzazz
https://ift.tt/2SiBQ37
YouTube
Learning the BLoC Pattern by David McCreary
The BLoC (Business Logic Component) pattern is way of managing state that uses streams and sinks exclusively. David goes over what streams are, when it makes...
New post on /r/flutterdev subreddit:
Coding for Morons | 01 Functions
https://www.youtube.com/watch?v=FBBLudr4luI
February 20, 2019 at 10:17PM by postgor
https://ift.tt/2GB6C5E
Coding for Morons | 01 Functions
https://www.youtube.com/watch?v=FBBLudr4luI
February 20, 2019 at 10:17PM by postgor
https://ift.tt/2GB6C5E
New post on /r/flutterdev subreddit:
How do i create list view that loops its contents.
For example, lets say I have a list view with the index 1, 2, 3, 4, 5 when I reach the end of the list view at index 5, I want the list view to continue scrolling and display the contents of index 1 , 2 , 3 etc.the Swiper plugin accomplishes this exactly. But how can I make the same concept work in a list view?https://pub.dartlang.org/packages/flutter_swiper
February 20, 2019 at 10:47PM by zapoJMR
https://ift.tt/2EjqibN
How do i create list view that loops its contents.
For example, lets say I have a list view with the index 1, 2, 3, 4, 5 when I reach the end of the list view at index 5, I want the list view to continue scrolling and display the contents of index 1 , 2 , 3 etc.the Swiper plugin accomplishes this exactly. But how can I make the same concept work in a list view?https://pub.dartlang.org/packages/flutter_swiper
February 20, 2019 at 10:47PM by zapoJMR
https://ift.tt/2EjqibN
Dart packages
flutter_swiper | Flutter Package
The best swiper(carousel) for flutter, with multiple layouts, infinite loop. Compatible with Android & iOS.
New post on Flutter Dev Google group:
Zoom and draggable objects
I am trying to implement two circles zooming at the same time then drag them independently. I already implemented something to add the circles and the zoom function but the drag functionality is my problem. I am a new using flutter. I am using this code: https://ift.tt/2VbLc2l
February 21, 2019 at 05:06AM by Santiago Taco
https://ift.tt/2ElCOI1
Zoom and draggable objects
I am trying to implement two circles zooming at the same time then drag them independently. I already implemented something to add the circles and the zoom function but the drag functionality is my problem. I am a new using flutter. I am using this code: https://ift.tt/2VbLc2l
February 21, 2019 at 05:06AM by Santiago Taco
https://ift.tt/2ElCOI1
New post on /r/flutterdev subreddit:
What is the "customer: ***" label in the official GitHub repo
I realized that some issues in the officail GitHub repo of Flutter have "customer: ..." like this: https://imgur.com/a/TlWk20HProbably they are issues reported by the Google's customers. So
February 21, 2019 at 06:13AM by lowasdf
https://ift.tt/2VaYZpW
What is the "customer: ***" label in the official GitHub repo
I realized that some issues in the officail GitHub repo of Flutter have "customer: ..." like this: https://imgur.com/a/TlWk20HProbably they are issues reported by the Google's customers. So
customer: solaris
or customer: udacity
are make sence. But many of them look just normal terms rather than organization's namesAre they kinds of codenames of other companies? (If it's true, customer: penguin
must be from the Linux Foundation lol.)February 21, 2019 at 06:13AM by lowasdf
https://ift.tt/2VaYZpW
Imgur
Post with 0 views. Shared by lolololow.
New post on /r/flutterdev subreddit:
Flutter Tutorial - Flutter Slider Widget
Flutter Tutorial - Flutter Slider Widget https://www.youtube.com/watch?v=n3__i6oMrtI
February 21, 2019 at 05:44AM by whatsupcoders
https://ift.tt/2Ta0Bmk
Flutter Tutorial - Flutter Slider Widget
Flutter Tutorial - Flutter Slider Widget https://www.youtube.com/watch?v=n3__i6oMrtI
February 21, 2019 at 05:44AM by whatsupcoders
https://ift.tt/2Ta0Bmk
YouTube
Flutter Tutorial - Flutter Slider Widget
Flutter Tutorial - Flutter Slider Widget
In this video, you will see how to use Slider Widgets in your Flutter application.
I have also included 3 demo use cases in the video.
For more details about Align Widget please watch my Flutter Tutorial - Flutter…
In this video, you will see how to use Slider Widgets in your Flutter application.
I have also included 3 demo use cases in the video.
For more details about Align Widget please watch my Flutter Tutorial - Flutter…
New post on Flutter Dev Google group:
checkbox eror
I have trouble adding the checkbox I tried a lot and did not find out the reason for the eror I will put the eror that I have with the code The eror is Compiler message: lib/MyApplication.dart:34:24: Error: Too few positional arguments: 1 required, 0 given. new Checkbox (
February 21, 2019 at 07:08AM by Prog Sarah
https://ift.tt/2Scq4qR
checkbox eror
I have trouble adding the checkbox I tried a lot and did not find out the reason for the eror I will put the eror that I have with the code The eror is Compiler message: lib/MyApplication.dart:34:24: Error: Too few positional arguments: 1 required, 0 given. new Checkbox (
February 21, 2019 at 07:08AM by Prog Sarah
https://ift.tt/2Scq4qR
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 to Make a PNG Gradient Overlay in Flutter
https://ift.tt/2tsbIZw
February 21, 2019 at 07:30AM by Purple_Pizzazz
https://ift.tt/2GUDDJx
How to Make a PNG Gradient Overlay in Flutter
https://ift.tt/2tsbIZw
February 21, 2019 at 07:30AM by Purple_Pizzazz
https://ift.tt/2GUDDJx
Medium
How to Make a PNG Gradient Overlay in Flutter
Hi everyone! Oleh Nahornyi, one of our mobile developers and Flutter fan, has conducted great research on how to apply a gradient to a…
New post on Flutter Dev Google group:
Spatial Navigation KeyEvent Problem
I'm trying to build a spatial navigation package for Flutter to fill the giant hole in the API and bring the framework to Android TV / tvOS and I'm hitting a snag. The documentation says to use a FocusNode along with a RawKeyEventListener to get key events but it doesn't seem to work without
February 21, 2019 at 10:18AM by Kyle Bedell
https://ift.tt/2Iqoz8Y
Spatial Navigation KeyEvent Problem
I'm trying to build a spatial navigation package for Flutter to fill the giant hole in the API and bring the framework to Android TV / tvOS and I'm hitting a snag. The documentation says to use a FocusNode along with a RawKeyEventListener to get key events but it doesn't seem to work without
February 21, 2019 at 10:18AM by Kyle Bedell
https://ift.tt/2Iqoz8Y
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:
Background image
Hey,I am trying to display background image over full scaffold body with Container BoxDecoration:
February 21, 2019 at 10:14AM by xfrozenspiritx
https://ift.tt/2GCMr7h
Background image
Hey,I am trying to display background image over full scaffold body with Container BoxDecoration:
return MaterialApp( home: Scaffold( appBar: AppBar( title: Text('Title'), ), body: Container( decoration: BoxDecoration( image: DecorationImage( image: AssetImage('assets/lake.jpg'), fit: BoxFit.cover)), child: Column( children: <Widget>[ Row( children: <Widget>[ Expanded( child: TextFormField() ) ], ) ], )), ), );What I get is great until I focus on TextField. Once I focus on textfield, keyboard comes up and also image comes up with it.How could I achieve that keyboard comes up over background image and not affect its height?https://i.redd.it/oor8fch22wh21.pnghttps://i.redd.it/0kzg2se32wh21.png
February 21, 2019 at 10:14AM by xfrozenspiritx
https://ift.tt/2GCMr7h