New post on /r/flutterdev subreddit:
Flutter: Adding Separator in ListView
https://ift.tt/2SlhsOZ
December 01, 2018 at 12:48PM by davide9192
https://ift.tt/2E6AK7P
Flutter: Adding Separator in ListView
https://ift.tt/2SlhsOZ
December 01, 2018 at 12:48PM by davide9192
https://ift.tt/2E6AK7P
Medium
Flutter: Adding Separator in ListView
There are lots of applications pushed to the app store as well as play store which is using a list to showcase scrollable things to the…
New post on /r/flutterdev subreddit:
FlutterForce — #Week 3 – Medium
https://ift.tt/2Snrn6B
December 01, 2018 at 12:35PM by flutterist
https://ift.tt/2E80T6k
FlutterForce — #Week 3 – Medium
https://ift.tt/2Snrn6B
December 01, 2018 at 12:35PM by flutterist
https://ift.tt/2E80T6k
Medium
FlutterForce — #Week 3
- Dash in London this week!
New post on /r/flutterdev subreddit:
Flutter Best Practices when it comes to classes and their instances.
I'm sorry about the title, couldn't think of a better one.Basically, I have a whole bunch of screens and they are all similar, so I can create them using one single class. Let's call this class MyScreen. My concern is, if I want to a MyScreen instance, should I just pass the data like so:
December 01, 2018 at 04:15PM by Yahiabouda
https://ift.tt/2E5eco5
Flutter Best Practices when it comes to classes and their instances.
I'm sorry about the title, couldn't think of a better one.Basically, I have a whole bunch of screens and they are all similar, so I can create them using one single class. Let's call this class MyScreen. My concern is, if I want to a MyScreen instance, should I just pass the data like so:
Navigator.push(context,MaterialPageRoute(builder: (context) => MyScreen(someData:someData)));
Using this data, the MyScreen class has a switch statement, such that, depending on the passed data, it can show the desired information.Now, should I use this method of creating new instances everytime some button is tapped to navigate to a new route, or should I just create a list of Widgets and store all the possible MyScreen instances inside of it, like soList <Widget> allMyScreenInstances = [MyScreen(someParam1),MyScreen(someParam2),...];
and then call each screen from HomeScreen by just having the index of a particular item in that list.TLDR; Should I create new instances everytime a button is tapped, or should I create them, store them, and then retrieve them by their index every time the button is tapped. And why?December 01, 2018 at 04:15PM by Yahiabouda
https://ift.tt/2E5eco5
reddit
r/FlutterDev - Flutter Best Practices when it comes to classes and their instances.
1 vote and 0 comments so far on Reddit
New post on Flutter Dev Google group:
TextField() Validation
Can I validate input from user using TextField()?
December 01, 2018 at 05:16PM by Falak Sabbir
https://ift.tt/2P7Gkb7
TextField() Validation
Can I validate input from user using TextField()?
December 01, 2018 at 05:16PM by Falak Sabbir
https://ift.tt/2P7Gkb7
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 tweet from flutterio:
Lots of good guesses, but China currently has the most Flutter devs, including those who worked on @AlibabaGroup's app! Here's the next piece of the puzzle.
We can't wait for #FlutterLive. It's been a long road ... how long exactly? What year did the Flutter Project start? pic.twitter.com/jSiO4JrCYY— Flutter (@flutterio) December 1, 2018
December 01, 2018 at 05:23PM
http://twitter.com/flutterio/status/1068903453299261441
Lots of good guesses, but China currently has the most Flutter devs, including those who worked on @AlibabaGroup's app! Here's the next piece of the puzzle.
We can't wait for #FlutterLive. It's been a long road ... how long exactly? What year did the Flutter Project start? pic.twitter.com/jSiO4JrCYY— Flutter (@flutterio) December 1, 2018
December 01, 2018 at 05:23PM
http://twitter.com/flutterio/status/1068903453299261441
Twitter
Alibaba Group (@AlibabaGroup) / Twitter
We're on a mission to make it easy to do business anywhere. We pledged to reach carbon neutrality by 2030 ♻
New post on Flutter Dev Google group:
how to use SVG in flutter
need help how to use svg in flutter where how to put svg in pubspec.yaml until use in my script
December 01, 2018 at 05:49PM by Rill The End
https://ift.tt/2U3t1Mt
how to use SVG in flutter
need help how to use svg in flutter where how to put svg in pubspec.yaml until use in my script
December 01, 2018 at 05:49PM by Rill The End
https://ift.tt/2U3t1Mt
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 on desktop, a real competitor to Electron – Flutter Community – Medium
https://ift.tt/2PdUEyS
December 01, 2018 at 08:02PM by Nash0x7E2
https://ift.tt/2DW6FXv
Flutter on desktop, a real competitor to Electron – Flutter Community – Medium
https://ift.tt/2PdUEyS
December 01, 2018 at 08:02PM by Nash0x7E2
https://ift.tt/2DW6FXv
Medium
Flutter on desktop, a real competitor to Electron
Flutter desktop for real-world applications and to accelerate mobile development. A project made by Simon Lightfoot and Norbert Kozsir.
New post on /r/flutterdev subreddit:
Sharing data across different screens.
In a previous post, I wrote that I couldn't handle complex route navigation. I sort of found a workaround.I simply passed the current "buttonKey" as a parameter to the second screen, so that the second screen constructs a new "Key" based on that button and displays a particular view. Now I want this URL-like-route string to be stored somewhere in a widget, such that any screen can access that route. I checked out the InheritedWidget, but apparently, it can only pass data in the same widget-tree, which doesn't help my case.I'm looking for a way to store the route string which gets constantly updated in some InheritedWidget-like Widget, so that I can access it from any screen. Is there a way to do that? Or should I keep passing params all the way down to the last screen?
December 01, 2018 at 07:30PM by Yahiabouda
https://ift.tt/2BM3EHV
Sharing data across different screens.
In a previous post, I wrote that I couldn't handle complex route navigation. I sort of found a workaround.I simply passed the current "buttonKey" as a parameter to the second screen, so that the second screen constructs a new "Key" based on that button and displays a particular view. Now I want this URL-like-route string to be stored somewhere in a widget, such that any screen can access that route. I checked out the InheritedWidget, but apparently, it can only pass data in the same widget-tree, which doesn't help my case.I'm looking for a way to store the route string which gets constantly updated in some InheritedWidget-like Widget, so that I can access it from any screen. Is there a way to do that? Or should I keep passing params all the way down to the last screen?
December 01, 2018 at 07:30PM by Yahiabouda
https://ift.tt/2BM3EHV
reddit
r/FlutterDev - Sharing data across different screens.
1 vote and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
Desktop Environment In Flutter?
A simple desktop environment would require a window manager, top panel and application menu. What I am thinking is implementing a small Linux desktop environment. Do you guys think this can be done in flutter?
December 01, 2018 at 11:35PM by Emwat1024
https://ift.tt/2rgoVne
Desktop Environment In Flutter?
A simple desktop environment would require a window manager, top panel and application menu. What I am thinking is implementing a small Linux desktop environment. Do you guys think this can be done in flutter?
December 01, 2018 at 11:35PM by Emwat1024
https://ift.tt/2rgoVne
reddit
r/FlutterDev - Desktop Environment In Flutter?
1 vote and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Reactive Programming - Streams - BLoC - Practical Use Cases
https://ift.tt/2U6Hmrn
December 02, 2018 at 09:14AM by etca2z
https://ift.tt/2zAH9nE
Reactive Programming - Streams - BLoC - Practical Use Cases
https://ift.tt/2U6Hmrn
December 02, 2018 at 09:14AM by etca2z
https://ift.tt/2zAH9nE
Didier Boelens
Didier Boelens - Flutter
Flutter - BLoC, Reactive Programming, Streams - Practical use cases and useful patterns.
Difficulty: Intermediate
Difficulty: Intermediate
New post on Flutter Dev Google group:
Search Delegate Problem
Need help please. i got a problem where search delegate text box not working after navigate to other page over it. i attached a video preview here. thanks for help!
December 02, 2018 at 12:47PM by Reaksmey Kevin
https://ift.tt/2E8UZld
Search Delegate Problem
Need help please. i got a problem where search delegate text box not working after navigate to other page over it. i attached a video preview here. thanks for help!
December 02, 2018 at 12:47PM by Reaksmey Kevin
https://ift.tt/2E8UZld
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: Adding Separator in ListView – Flutter Community – Medium
https://ift.tt/2Qyspzu
December 02, 2018 at 12:45PM by ibhavikmakwana
https://ift.tt/2DV99Wd
Flutter: Adding Separator in ListView – Flutter Community – Medium
https://ift.tt/2Qyspzu
December 02, 2018 at 12:45PM by ibhavikmakwana
https://ift.tt/2DV99Wd
Medium
Flutter: Adding Separator in ListView
There are lots of applications pushed to the app store as well as play store which is using a list to showcase scrollable things to the…
New tweet from flutterio:
And the answer is ... we kicked off the Flutter Project in 2014! Here's another piece. Hmm, what could it be? 🤔 #FlutterLive
See the next question below! pic.twitter.com/tj42s96pG8— Flutter (@flutterio) December 2, 2018
December 02, 2018 at 02:37PM
http://twitter.com/flutterio/status/1069224020070014976
And the answer is ... we kicked off the Flutter Project in 2014! Here's another piece. Hmm, what could it be? 🤔 #FlutterLive
See the next question below! pic.twitter.com/tj42s96pG8— Flutter (@flutterio) December 2, 2018
December 02, 2018 at 02:37PM
http://twitter.com/flutterio/status/1069224020070014976
Twitter
#flutterlive hashtag on Twitter
14m ago @flutterio tweeted: "See what's new since #FlutterLive! In th.." - read what others are saying and join the conversation.
New tweet from flutterio:
Flutter's come a long way since 2014, but exactly how much has it changed? Flutter was originally based on a different Google product. Which product was it? #FlutterLive— Flutter (@flutterio) December 2, 2018
December 02, 2018 at 02:37PM
http://twitter.com/flutterio/status/1069224021613531136
Flutter's come a long way since 2014, but exactly how much has it changed? Flutter was originally based on a different Google product. Which product was it? #FlutterLive— Flutter (@flutterio) December 2, 2018
December 02, 2018 at 02:37PM
http://twitter.com/flutterio/status/1069224021613531136
Twitter
#flutterlive hashtag on Twitter
14m ago @flutterio tweeted: "See what's new since #FlutterLive! In th.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
OhAuth2: A package for making OAuth2 easier.
https://ift.tt/2G6yQGf
December 02, 2018 at 03:41PM by GottaGoHome
https://ift.tt/2rdKiFy
OhAuth2: A package for making OAuth2 easier.
https://ift.tt/2G6yQGf
December 02, 2018 at 03:41PM by GottaGoHome
https://ift.tt/2rdKiFy
GitHub
murtaza0xFF/OhAuth2
A flutter library for OAuth2 - the industry-standard protocol for authorization - murtaza0xFF/OhAuth2
New post on Flutter Dev Google group:
Using Shared Preferences, after adding Flutter to existing app.
Hello Guys, I've integrated flutter in my existing android application using this guide https://ift.tt/2ujlugB . I am trying to share the preferences using shared_preferences on Android and
December 02, 2018 at 03:43PM by Basanth Verma
https://ift.tt/2QxBFnv
Using Shared Preferences, after adding Flutter to existing app.
Hello Guys, I've integrated flutter in my existing android application using this guide https://ift.tt/2ujlugB . I am trying to share the preferences using shared_preferences on Android and
December 02, 2018 at 03:43PM by Basanth Verma
https://ift.tt/2QxBFnv
GitHub
flutter/flutter
Flutter makes it easy and fast to build beautiful mobile apps. - flutter/flutter
New post on Flutter Dev Google group:
Problem installing flutter
I have a problem installing flutter on windows 10 problem can not read and know errors on the command prompt system when writing flutter in the text does not make any change or reading to the installation fully .. possible help since I A long time and I did not know the error ..... possible help
December 02, 2018 at 04:52PM by Amir Samir
https://ift.tt/2PfvjEL
Problem installing flutter
I have a problem installing flutter on windows 10 problem can not read and know errors on the command prompt system when writing flutter in the text does not make any change or reading to the installation fully .. possible help since I A long time and I did not know the error ..... possible help
December 02, 2018 at 04:52PM by Amir Samir
https://ift.tt/2PfvjEL
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:
how do i prevent my content from dispearing when keyboard appearing
how do i prevent my content from dispearing when keyboard appearing
December 02, 2018 at 05:16PM by DMM
https://ift.tt/2FXwRDR
how do i prevent my content from dispearing when keyboard appearing
how do i prevent my content from dispearing when keyboard appearing
December 02, 2018 at 05:16PM by DMM
https://ift.tt/2FXwRDR
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:
Post something in facebook or linkedin
My question is: is possible to create an app that posts text in facebook or linkedin? Thank you
December 02, 2018 at 05:18PM by William Flores
https://ift.tt/2riIivE
Post something in facebook or linkedin
My question is: is possible to create an app that posts text in facebook or linkedin? Thank you
December 02, 2018 at 05:18PM by William Flores
https://ift.tt/2riIivE
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:
New PC or Emulator-less
Hello all, Got burnt this weekend as I was way too enthusiastic and installed the complete package Flutter & Android Studio including all the various downloads. Of course it did not function because I have an amd system (phenom) and I am still on win7. So what I see I have 2 options to learn
December 02, 2018 at 05:38PM by restless invention
https://ift.tt/2Q5sHyu
New PC or Emulator-less
Hello all, Got burnt this weekend as I was way too enthusiastic and installed the complete package Flutter & Android Studio including all the various downloads. Of course it did not function because I have an amd system (phenom) and I am still on win7. So what I see I have 2 options to learn
December 02, 2018 at 05:38PM by restless invention
https://ift.tt/2Q5sHyu
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 tweet from flutterio:
We made it to London! What should we do with the extra couple days we have before we kick off #FlutterLive on December 4th?
Leave your recommendations in the comments and maybe we’ll see you out there! #ImWithDash pic.twitter.com/E1uRyGQCNu— Flutter (@flutterio) December 2, 2018
December 02, 2018 at 07:31PM
http://twitter.com/flutterio/status/1069297915905085440
We made it to London! What should we do with the extra couple days we have before we kick off #FlutterLive on December 4th?
Leave your recommendations in the comments and maybe we’ll see you out there! #ImWithDash pic.twitter.com/E1uRyGQCNu— Flutter (@flutterio) December 2, 2018
December 02, 2018 at 07:31PM
http://twitter.com/flutterio/status/1069297915905085440
Twitter
#flutterlive hashtag on Twitter
14m ago @flutterio tweeted: "See what's new since #FlutterLive! In th.." - read what others are saying and join the conversation.