New post on /r/flutterdev subreddit:
Flutter Tutorial - Flutter Gradient Effect
Flutter Tutorial - Flutter Gradient Effect https://youtu.be/LNHrg7D_MWo
February 02, 2019 at 05:55AM by whatsupcoders
http://bit.ly/2WvFt97
Flutter Tutorial - Flutter Gradient Effect
Flutter Tutorial - Flutter Gradient Effect https://youtu.be/LNHrg7D_MWo
February 02, 2019 at 05:55AM by whatsupcoders
http://bit.ly/2WvFt97
YouTube
Flutter Tutorial - Flutter Gradient Effect
Flutter Tutorial - Flutter Gradient Effect
In this video, you will see how to achieve gradient effect in your Flutter application.
I have added a lot of variations like adding gradient effect in AppBar, Background, Chip, Button, Listview.
For more details…
In this video, you will see how to achieve gradient effect in your Flutter application.
I have added a lot of variations like adding gradient effect in AppBar, Background, Chip, Button, Listview.
For more details…
New post on /r/flutterdev subreddit:
#1 Flutter + Dart Tips
I have published #1 Flutter + Dart Tipshttps://link.medium.com/JfOC6W3OTTYou will be getting this article on monthly bases. Stay updated for the Latest #Flutter and #Dart Tips.Check this repository for the same:https://github.com/ibhavikmakwana/FlutterDartTips
February 02, 2019 at 06:54AM by ibhavikmakwana
http://bit.ly/2G3geWF
#1 Flutter + Dart Tips
I have published #1 Flutter + Dart Tipshttps://link.medium.com/JfOC6W3OTTYou will be getting this article on monthly bases. Stay updated for the Latest #Flutter and #Dart Tips.Check this repository for the same:https://github.com/ibhavikmakwana/FlutterDartTips
February 02, 2019 at 06:54AM by ibhavikmakwana
http://bit.ly/2G3geWF
Medium
#1 Flutter + Dart Tips
There are always some small things in every programming language and framework that helps to work with it better. So in the Dart language…
New post on /r/flutterdev subreddit:
How to set default value to StreamBuilder?
How to set default value to stream builder? suppose in below example I have to set default email Id as ‘abc123@gmail.com’. I tried initialData value but it’s not worked. can you please guide me?Widget emailField(StateMgmtBloc stateMgmtBloc) { return StreamBuilder( //initialData: “abc123@gmail.com”, stream: stateMgmtBloc.emailStream, builder: (BuildContext context, AsyncSnapshot<dynamic> snapshot) { return TextField( onChanged: stateMgmtBloc.updateEmail, //Wire up TextField widget to the email stream and add the email to the stream sink keyboardType: TextInputType.emailAddress, decoration: InputDecoration( hintText: ‘email@xyz.com’, labelText: ‘Email Address’, errorText: snapshot .error, //retrieve the error message from the stream and display it ), ); }, ); }
February 02, 2019 at 11:21AM by vaibhav_2018
http://bit.ly/2BipuSH
How to set default value to StreamBuilder?
How to set default value to stream builder? suppose in below example I have to set default email Id as ‘abc123@gmail.com’. I tried initialData value but it’s not worked. can you please guide me?Widget emailField(StateMgmtBloc stateMgmtBloc) { return StreamBuilder( //initialData: “abc123@gmail.com”, stream: stateMgmtBloc.emailStream, builder: (BuildContext context, AsyncSnapshot<dynamic> snapshot) { return TextField( onChanged: stateMgmtBloc.updateEmail, //Wire up TextField widget to the email stream and add the email to the stream sink keyboardType: TextInputType.emailAddress, decoration: InputDecoration( hintText: ‘email@xyz.com’, labelText: ‘Email Address’, errorText: snapshot .error, //retrieve the error message from the stream and display it ), ); }, ); }
February 02, 2019 at 11:21AM by vaibhav_2018
http://bit.ly/2BipuSH
.xyz
.xyz Domain Names | Join Generation XYZ
.xyz is for every website, everywhere.® We offer the most flexible and affordable domain names to create choice for the next generation of internet users.
New post on /r/flutterdev subreddit:
"Creating Your First App", a step by step video tutorial for junior devs
Hey guys, I've posted another video. Looking for the community's thoughts and feedback. Next videos influenced by what folks want to learn so please lmk. Cheers, Nick.https://fluttercrashcourse.com/lessons/hello-world-jrdevshttps://i.redd.it/p8k4nukwp6e21.jpg
February 02, 2019 at 05:51PM by seenickcode
http://bit.ly/2D4JmZL
"Creating Your First App", a step by step video tutorial for junior devs
Hey guys, I've posted another video. Looking for the community's thoughts and feedback. Next videos influenced by what folks want to learn so please lmk. Cheers, Nick.https://fluttercrashcourse.com/lessons/hello-world-jrdevshttps://i.redd.it/p8k4nukwp6e21.jpg
February 02, 2019 at 05:51PM by seenickcode
http://bit.ly/2D4JmZL
New post on /r/flutterdev subreddit:
Icon for flutter app
Hi, i want to create icon which free or paid website can do great icons.And which tools to generate icon per pixel for ios and Android
February 02, 2019 at 06:22PM by Kotaibaw
http://bit.ly/2GgHEYe
Icon for flutter app
Hi, i want to create icon which free or paid website can do great icons.And which tools to generate icon per pixel for ios and Android
February 02, 2019 at 06:22PM by Kotaibaw
http://bit.ly/2GgHEYe
reddit
r/FlutterDev - Icon for flutter app
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
What is best approach for global state management using BLoC?
I found that bloc resolves the page/screen components decoupling and is a very good solution. Bu what I didn't find is some good solution for global state management along bloc. I target developing medium+ apps.Inherited Widget&Stateful component (rebuild the entire tree problem... someday)InheritedModel (not rebuilding all descendents)Redux (global store for state)ScopedModel (a bit of trouble connecting multiple model with mixin to have a global state?)Global Bloc instance (not so of a solution)I think redux does a good job with state but comes with a lot of things together.What did you guys used in your apps when used bloc ?
February 02, 2019 at 09:00PM by objectbeam
http://bit.ly/2MQynrq
What is best approach for global state management using BLoC?
I found that bloc resolves the page/screen components decoupling and is a very good solution. Bu what I didn't find is some good solution for global state management along bloc. I target developing medium+ apps.Inherited Widget&Stateful component (rebuild the entire tree problem... someday)InheritedModel (not rebuilding all descendents)Redux (global store for state)ScopedModel (a bit of trouble connecting multiple model with mixin to have a global state?)Global Bloc instance (not so of a solution)I think redux does a good job with state but comes with a lot of things together.What did you guys used in your apps when used bloc ?
February 02, 2019 at 09:00PM by objectbeam
http://bit.ly/2MQynrq
reddit
r/FlutterDev - What is best approach for global state management using BLoC?
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
aren't you guys afraid that Apple might stop accepting flutter apps just like how they did with flash?
on 2010 they announced their reasoning for stopping to support flash on their mobile devices and although they brought up a lot of technical reasons for their decision, one of the reasons was this:We have discussed the downsides of using Flash to play video and interactive content from websites, but Adobe also wants developers to adopt Flash to create apps that run on our mobile devices.We know from painful experience that letting a third party layer of software come between the platform and the developer ultimately results in sub-standard apps and hinders the enhancement and progress of the platform. If developers grow dependent on third party development libraries and tools, they can only take advantage of platform enhancements if and when the third party chooses to adopt the new features. We cannot be at the mercy of a third party deciding if and when they will make our enhancements available to our developers.This becomes even worse if the third party is supplying a cross platform development tool. The third party may not adopt enhancements from one platform unless they are available on all of their supported platforms. Hence developers only have access to the lowest common denominator set of features. Again, we cannot accept an outcome where developers are blocked from using our innovations and enhancements because they are not available on our competitor’s platforms.
February 02, 2019 at 08:53PM by alarmingTrash
http://bit.ly/2MNK55M
aren't you guys afraid that Apple might stop accepting flutter apps just like how they did with flash?
on 2010 they announced their reasoning for stopping to support flash on their mobile devices and although they brought up a lot of technical reasons for their decision, one of the reasons was this:We have discussed the downsides of using Flash to play video and interactive content from websites, but Adobe also wants developers to adopt Flash to create apps that run on our mobile devices.We know from painful experience that letting a third party layer of software come between the platform and the developer ultimately results in sub-standard apps and hinders the enhancement and progress of the platform. If developers grow dependent on third party development libraries and tools, they can only take advantage of platform enhancements if and when the third party chooses to adopt the new features. We cannot be at the mercy of a third party deciding if and when they will make our enhancements available to our developers.This becomes even worse if the third party is supplying a cross platform development tool. The third party may not adopt enhancements from one platform unless they are available on all of their supported platforms. Hence developers only have access to the lowest common denominator set of features. Again, we cannot accept an outcome where developers are blocked from using our innovations and enhancements because they are not available on our competitor’s platforms.
February 02, 2019 at 08:53PM by alarmingTrash
http://bit.ly/2MNK55M
New post on /r/flutterdev subreddit:
Publish on iOS without an iPhone?
Hey guys. I have an app I want to publish on the App Store but when I went through the process of setting up my apple developer account I got stuck at setting up two-factor authentication (which is apparently mandatory). The problem is that this can only be done using an iPhone, as Apple sends a unique code to your iPhone. I don't have or want an iPhone so I'm wondering if anyone has managed to set up an Apple Developer account without one?
February 02, 2019 at 10:02PM by FerretStereo
http://bit.ly/2S6e7I9
Publish on iOS without an iPhone?
Hey guys. I have an app I want to publish on the App Store but when I went through the process of setting up my apple developer account I got stuck at setting up two-factor authentication (which is apparently mandatory). The problem is that this can only be done using an iPhone, as Apple sends a unique code to your iPhone. I don't have or want an iPhone so I'm wondering if anyone has managed to set up an Apple Developer account without one?
February 02, 2019 at 10:02PM by FerretStereo
http://bit.ly/2S6e7I9
reddit
r/FlutterDev - Publish on iOS without an iPhone?
1 vote and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
Sprite Sheet Animations in Flutter
http://bit.ly/2G3T0zP
February 02, 2019 at 10:56PM by Purple_Pizzazz
http://bit.ly/2TprcZn
Sprite Sheet Animations in Flutter
http://bit.ly/2G3T0zP
February 02, 2019 at 10:56PM by Purple_Pizzazz
http://bit.ly/2TprcZn
Medium
Sprite Sheet Animations in Flutter
How to create cool sprite sheet animations using flame, the game engine for Flutter
New post on /r/flutterdev subreddit:
Is code magic updating build number build version automatically?
No text found
February 02, 2019 at 10:26PM by Kotaibaw
http://bit.ly/2DRq5g2
Is code magic updating build number build version automatically?
No text found
February 02, 2019 at 10:26PM by Kotaibaw
http://bit.ly/2DRq5g2
reddit
r/FlutterDev - Is code magic updating build number build version automatically?
2 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Flutter Feb Survey - Additional Feedback
Hi Flutter Team, I've been looking/working with Flutter since before Google I/O 2018, which I was lucky enough to attend in person. I'm a fan and only do Flutter development currently. I was wondering when the narrative from the Flutter team is going to mature. The current underlying
February 03, 2019 at 02:08AM by Mike Hughes
http://bit.ly/2MKLHNK
Flutter Feb Survey - Additional Feedback
Hi Flutter Team, I've been looking/working with Flutter since before Google I/O 2018, which I was lucky enough to attend in person. I'm a fan and only do Flutter development currently. I was wondering when the narrative from the Flutter team is going to mature. The current underlying
February 03, 2019 at 02:08AM by Mike Hughes
http://bit.ly/2MKLHNK
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 app architecture 101: Vanilla, Scoped Model, BLoC
http://bit.ly/2GhByHa
February 03, 2019 at 01:55AM by PedroMassango
http://bit.ly/2SkwBE6
Flutter app architecture 101: Vanilla, Scoped Model, BLoC
http://bit.ly/2GhByHa
February 03, 2019 at 01:55AM by PedroMassango
http://bit.ly/2SkwBE6
Medium
Flutter app architecture 101: Vanilla, Scoped Model, BLoC
Flutter provides a modern react-style framework, rich widget collection and tooling, but there’s nothing similar to Android’s guide to app…
New post on Flutter Dev Google group:
LO SCHIFOSO NAZISTA FEDERICO SALVINI SI VERGOGNERA' DEL FIGLIO DI PUTTANA PADRE CHE HA: MATTEO SALVI
LO SCHIFOSO NAZISTA FEDERICO SALVINI SI VERGOGNERA' DEL FIGLIO DI PUTTANA PADRE CHE HA: MATTEO SALVINI! E DI LUI SI VERGOGNERA' PURE LA FASCISTROIA MADRE FABRIZIA IELUZZI (CHE NASCONDEVA A CASA DEL SUO CRIMINALE PADRE LINO IELUZZI, 2 MILIONI DI €..... DI DIAMANTI, OVVIA PARTE DEI 49 MILIONI
February 03, 2019 at 02:41AM by SIMONA-PREMOLI EXLESBIANAMANTE-DE MARINA-BERLUSCONI
http://bit.ly/2S2xfGV
LO SCHIFOSO NAZISTA FEDERICO SALVINI SI VERGOGNERA' DEL FIGLIO DI PUTTANA PADRE CHE HA: MATTEO SALVI
LO SCHIFOSO NAZISTA FEDERICO SALVINI SI VERGOGNERA' DEL FIGLIO DI PUTTANA PADRE CHE HA: MATTEO SALVINI! E DI LUI SI VERGOGNERA' PURE LA FASCISTROIA MADRE FABRIZIA IELUZZI (CHE NASCONDEVA A CASA DEL SUO CRIMINALE PADRE LINO IELUZZI, 2 MILIONI DI €..... DI DIAMANTI, OVVIA PARTE DEI 49 MILIONI
February 03, 2019 at 02:41AM by SIMONA-PREMOLI EXLESBIANAMANTE-DE MARINA-BERLUSCONI
http://bit.ly/2S2xfGV
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:
FlutterForce — Week 12
http://bit.ly/2BhAG25
February 03, 2019 at 09:06AM by flutterist
http://bit.ly/2tbcaLH
FlutterForce — Week 12
http://bit.ly/2BhAG25
February 03, 2019 at 09:06AM by flutterist
http://bit.ly/2tbcaLH
Medium
FlutterForce — #Week 12
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Catcher - plugin for error catching and handling
http://bit.ly/2sZqmqQ
February 03, 2019 at 08:16AM by jhomlala
http://bit.ly/2DQaCg1
Catcher - plugin for error catching and handling
http://bit.ly/2sZqmqQ
February 03, 2019 at 08:16AM by jhomlala
http://bit.ly/2DQaCg1
GitHub
jhomlala/catcher
Flutter error catching & handling plugin. Contribute to jhomlala/catcher development by creating an account on GitHub.
New post on Flutter Dev Google group:
Navigate to different actions
Hi, I want to navigate from cards (could make imgaeButtons too) in a listView to another class where calculations will happen depended on wich card was clicked. I have a listview with plus (+), minus (-), times (x), and divide (/) symbols in the cards. The thought is that if you click on '+'
February 03, 2019 at 05:28PM by Battleaxes
http://bit.ly/2RBLRYL
Navigate to different actions
Hi, I want to navigate from cards (could make imgaeButtons too) in a listView to another class where calculations will happen depended on wich card was clicked. I have a listview with plus (+), minus (-), times (x), and divide (/) symbols in the cards. The thought is that if you click on '+'
February 03, 2019 at 05:28PM by Battleaxes
http://bit.ly/2RBLRYL
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:
Dart meets Kotlin? kt.dart ports the Kotlin Standard Library
http://bit.ly/2D2Ex2U
February 03, 2019 at 04:27PM by Slyferr
http://bit.ly/2S5T0p3
Dart meets Kotlin? kt.dart ports the Kotlin Standard Library
http://bit.ly/2D2Ex2U
February 03, 2019 at 04:27PM by Slyferr
http://bit.ly/2S5T0p3
JAXenter
Dart meets Kotlin? kt.dart ports the Kotlin Standard Library - JAXenter
For everything that Dart may be missing for high-level programming, there's kt.dart. This project ports the Kotlin Standard Library for Dart/Flutter.
New post on /r/flutterdev subreddit:
An Elegant Flutter Calculator (http://bit.ly/2S5T209)
http://bit.ly/2S4GTsH
February 03, 2019 at 04:21PM by shubhamhackz
http://bit.ly/2UBuskD
An Elegant Flutter Calculator (http://bit.ly/2S5T209)
http://bit.ly/2S4GTsH
February 03, 2019 at 04:21PM by shubhamhackz
http://bit.ly/2UBuskD
New post on /r/flutterdev subreddit:
Can I run a Python interpreter within my app?
I'm new to Flutter and trying it for the first time (I'm not an experienced mobile developer either) and was wondering how to go about running a Python interpreter within my app.What I'd actually like to create is an app with Python katas or challenges so that when the user solves a challenge it will tell them if it passed some tests (I assume I'd write those as unit tests).Not sure where to start with all of that, though...Thanks.
February 03, 2019 at 01:55PM by patr1c1a
http://bit.ly/2Bdxzb9
Can I run a Python interpreter within my app?
I'm new to Flutter and trying it for the first time (I'm not an experienced mobile developer either) and was wondering how to go about running a Python interpreter within my app.What I'd actually like to create is an app with Python katas or challenges so that when the user solves a challenge it will tell them if it passed some tests (I assume I'd write those as unit tests).Not sure where to start with all of that, though...Thanks.
February 03, 2019 at 01:55PM by patr1c1a
http://bit.ly/2Bdxzb9
reddit
r/FlutterDev - Can I run a Python interpreter within my app?
2 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Widget-Maker for Flutter, written in Flutter
http://bit.ly/2TtSHkP
February 03, 2019 at 11:47PM by norbert515
http://bit.ly/2SnhNEr
Widget-Maker for Flutter, written in Flutter
http://bit.ly/2TtSHkP
February 03, 2019 at 11:47PM by norbert515
http://bit.ly/2SnhNEr