New post on /r/flutterdev subreddit:
I went back to my react/react native roots
I have an app that I've been working on for some time and have struggled with a clean way to manage state.I've used Scoped Models, Provider, and MobX.These all work well but I'm used to handling side effects in very specific ways, as well as dealing with immutability so I've gone back to Redux. Yes there's a ton of boilerplate, but ugghhhhhhhhhh am I so much happier. I'm very very accustomed to the Redux pattern and can work so much faster now. Now I update different pieces of state with middleware without having to have some class that manages two, three, or four different classes of state to get the desired side effects I want.If it ain't broke......
July 08, 2019 at 03:56AM by puglife420blazeit
https://ift.tt/32e8j0x
I went back to my react/react native roots
I have an app that I've been working on for some time and have struggled with a clean way to manage state.I've used Scoped Models, Provider, and MobX.These all work well but I'm used to handling side effects in very specific ways, as well as dealing with immutability so I've gone back to Redux. Yes there's a ton of boilerplate, but ugghhhhhhhhhh am I so much happier. I'm very very accustomed to the Redux pattern and can work so much faster now. Now I update different pieces of state with middleware without having to have some class that manages two, three, or four different classes of state to get the desired side effects I want.If it ain't broke......
July 08, 2019 at 03:56AM by puglife420blazeit
https://ift.tt/32e8j0x
reddit
r/FlutterDev - I went back to my react/react native roots
0 votes and 1 comment so far on Reddit
New post on Flutter Dev Google group:
Sorting RSS News Feeds By Title
I'm trying to narrow down a way to sort RSS News feeds by title. For example when you go into a browser and load google.com/news they provide articles from multiple sources under the same title or topic. I'm sure google is using some kind of textual based machine learning to group news articles
July 08, 2019 at 05:11AM by Lexton
https://ift.tt/2XwP4ke
Sorting RSS News Feeds By Title
I'm trying to narrow down a way to sort RSS News feeds by title. For example when you go into a browser and load google.com/news they provide articles from multiple sources under the same title or topic. I'm sure google is using some kind of textual based machine learning to group news articles
July 08, 2019 at 05:11AM by Lexton
https://ift.tt/2XwP4ke
Google News
Comprehensive up-to-date news coverage, aggregated from sources all over the world by Google News.
New post on /r/flutterdev subreddit:
User profile banner with slide options for quick access
https://ift.tt/2JkXxyc
July 08, 2019 at 04:48AM by Filledstacks
https://ift.tt/2xBTMgW
User profile banner with slide options for quick access
https://ift.tt/2JkXxyc
July 08, 2019 at 04:48AM by Filledstacks
https://ift.tt/2xBTMgW
Filledstacks
Flutter Slide Options for User Profile
A tutorial that shows you how to build a slide item with additional profile options.
New post on Flutter Dev Google group:
how to retrieve the value frm the text
retreiving the value from the textfield and displayed and added to the same page. nt able to do it plz help anyone
July 08, 2019 at 07:21AM by ಮಂಜು
https://ift.tt/2xCnhPH
how to retrieve the value frm the text
retreiving the value from the textfield and displayed and added to the same page. nt able to do it plz help anyone
July 08, 2019 at 07:21AM by ಮಂಜು
https://ift.tt/2xCnhPH
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:
Plugins in Flutter | Plugins created by FlutterDevs
https://ift.tt/32hC7t1
July 08, 2019 at 08:16AM by Flutter-Devs
https://ift.tt/2G0cxzk
Plugins in Flutter | Plugins created by FlutterDevs
https://ift.tt/32hC7t1
July 08, 2019 at 08:16AM by Flutter-Devs
https://ift.tt/2G0cxzk
Medium
Plugins in Flutter Plugins created by FlutterDevs
The road to cross-platform app development has been jam-packed lately, the main reason being its alluring nature of single codebase where…
New post on /r/flutterdev subreddit:
Compile time Dependency Injection in Flutter by Sagar Suri
https://ift.tt/2NOvXgK
July 08, 2019 at 08:07AM by sagarsuri56
https://ift.tt/2YEOX2v
Compile time Dependency Injection in Flutter by Sagar Suri
https://ift.tt/2NOvXgK
July 08, 2019 at 08:07AM by sagarsuri56
https://ift.tt/2YEOX2v
sagarsuri56.hashnode.dev
Compile time Dependency Injection in Flutter
Hey Folks! I am back with another brand new article on Flutter. This time I will be covering a very interesting and important design pattern in the world of software development i.e “Dependency Injection”. This will help you build classes that are lo...
New post on Flutter Dev Google group:
Need experienced flutter developer
Dear Developers, I'm not sure whether this is a right place to get developer for project. Currently we have excellent business idea and want to implement it. We believe that definitely our idea will make much profit from the market. We have started work and currently 2 developers are working on
July 08, 2019 at 11:12AM by BigDreamer
https://ift.tt/2XzKmxc
Need experienced flutter developer
Dear Developers, I'm not sure whether this is a right place to get developer for project. Currently we have excellent business idea and want to implement it. We believe that definitely our idea will make much profit from the market. We have started work and currently 2 developers are working on
July 08, 2019 at 11:12AM by BigDreamer
https://ift.tt/2XzKmxc
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:
Need help with this layout issue.
I have a situation where there are two text items in a row. The first text can have a variable length, but I don't want to wrap the texts in two lines. So I need the first text to be clipped when the parent does not have enough width for it and the second text. Now, if I do not place the texts in a row, it works as expected. But if they are in a Row, the clipping does not occur. I can not wrap the first text in an Expanded widget (which fixes the clipping problem) because it adds a blank space between the two texts. I can not wrapped the text in a container with fixed with for the same reason.I need the second element to shift right until there is no space left then i need the first element to start clipping its text.Stackoverflow link with code snippet and a screenshot
July 08, 2019 at 11:32AM by aasiz
https://ift.tt/2Xwjtz9
Need help with this layout issue.
I have a situation where there are two text items in a row. The first text can have a variable length, but I don't want to wrap the texts in two lines. So I need the first text to be clipped when the parent does not have enough width for it and the second text. Now, if I do not place the texts in a row, it works as expected. But if they are in a Row, the clipping does not occur. I can not wrap the first text in an Expanded widget (which fixes the clipping problem) because it adds a blank space between the two texts. I can not wrapped the text in a container with fixed with for the same reason.I need the second element to shift right until there is no space left then i need the first element to start clipping its text.Stackoverflow link with code snippet and a screenshot
July 08, 2019 at 11:32AM by aasiz
https://ift.tt/2Xwjtz9
Stack Overflow
Flutter: Text clipping not working when in a Row
I have a situation where there are two text items in a row. The first text can have a variable length, but I don't want to wrap the texts in two lines. So I need the first text to be clipped when the
New post on /r/flutterdev subreddit:
Amazing database for flutter and dart web
I just found this library and I instantly fell in love with it. I was using jaguar orm before and i will switch to Moor soon.Check it out guys! You won't regret it :)https://github.com/simolus3/moor/
July 08, 2019 at 08:37AM by julianlenz
https://ift.tt/2xBslE6
Amazing database for flutter and dart web
I just found this library and I instantly fell in love with it. I was using jaguar orm before and i will switch to Moor soon.Check it out guys! You won't regret it :)https://github.com/simolus3/moor/
July 08, 2019 at 08:37AM by julianlenz
https://ift.tt/2xBslE6
GitHub
GitHub - simolus3/drift: Drift is an easy to use, reactive, typesafe persistence library for Dart & Flutter.
Drift is an easy to use, reactive, typesafe persistence library for Dart & Flutter. - GitHub - simolus3/drift: Drift is an easy to use, reactive, typesafe persistence library for Dart &...
New post on /r/flutterdev subreddit:
New Flutter App - Highlight - Video to HD Photos.
https://ift.tt/2xB47di
July 08, 2019 at 01:48PM by allenwong
https://ift.tt/2LESEl3
New Flutter App - Highlight - Video to HD Photos.
https://ift.tt/2xB47di
July 08, 2019 at 01:48PM by allenwong
https://ift.tt/2LESEl3
Product Hunt
Highlight - Video to HD Photos | Product Hunt
Highlight allows you to extract one or multiple HD photos from your Videos, Live Photos, and GIFs in a super easiest way.
New post on Flutter Dev Google group:
Issue related for flutter linux desktop apllication
why targetplatform.fuchsia is not yet supported by the webview_flutter plugin? and why pdf file or text file is not open flutter desktop application? [ERROR:c:\b\s\w\ir\k\src\flutter\lib\ui\ui_dart_state.cc(148)] Unhandled Exception: Exception: Error opening asset file #0 _MyAppState.getFi
July 08, 2019 at 02:17PM by Munish Rathore
https://ift.tt/2NH9ZMV
Issue related for flutter linux desktop apllication
why targetplatform.fuchsia is not yet supported by the webview_flutter plugin? and why pdf file or text file is not open flutter desktop application? [ERROR:c:\b\s\w\ir\k\src\flutter\lib\ui\ui_dart_state.cc(148)] Unhandled Exception: Exception: Error opening asset file #0 _MyAppState.getFi
July 08, 2019 at 02:17PM by Munish Rathore
https://ift.tt/2NH9ZMV
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:
PDF Viewer in Flutter for Linux
Has anyone been able to get Flutter in Linux to view a PDF document. We have tried the Flutter PDF plugin and the PDFTron PDF Plugin but both seem to be not supported yet in Flutter for Linux. Any help would be appreciated.
July 08, 2019 at 03:07PM by Munish Rathore
https://ift.tt/2JmFIyM
PDF Viewer in Flutter for Linux
Has anyone been able to get Flutter in Linux to view a PDF document. We have tried the Flutter PDF plugin and the PDFTron PDF Plugin but both seem to be not supported yet in Flutter for Linux. Any help would be appreciated.
July 08, 2019 at 03:07PM by Munish Rathore
https://ift.tt/2JmFIyM
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:
"targetplatform.fuchsia" is not yet supported by the webview_flutter plugin
Anyone seen this in the Linux Desktop and the Windows Desktop applications?
July 08, 2019 at 03:11PM by Munish Rathore
https://ift.tt/2XA3kn8
"targetplatform.fuchsia" is not yet supported by the webview_flutter plugin
Anyone seen this in the Linux Desktop and the Windows Desktop applications?
July 08, 2019 at 03:11PM by Munish Rathore
https://ift.tt/2XA3kn8
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:
Testing Flutter for different Devices?
Does anybody have recommendation on automated tests for different devices like a virtual device farm?Additionally to the unit,widget and intergration tests it would be great to have a tool that can tell you if your app will work on most devices.Sadly firebase testlab doesn't seem to support flutter yet. Is this a planned feature?
July 08, 2019 at 02:56PM by maan_ster
https://ift.tt/30iQN9y
Testing Flutter for different Devices?
Does anybody have recommendation on automated tests for different devices like a virtual device farm?Additionally to the unit,widget and intergration tests it would be great to have a tool that can tell you if your app will work on most devices.Sadly firebase testlab doesn't seem to support flutter yet. Is this a planned feature?
July 08, 2019 at 02:56PM by maan_ster
https://ift.tt/30iQN9y
reddit
r/FlutterDev - Testing Flutter for different Devices?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
RichText (Flutter Widget of the Week)
https://www.youtube.com/attribution_link?a=25ECwaB0uIA&u=%2Fwatch%3Fv%3DrykDVh-QFfw%26feature%3Dshare
July 08, 2019 at 06:46PM by Pixelreddit
https://ift.tt/32itVZx
RichText (Flutter Widget of the Week)
https://www.youtube.com/attribution_link?a=25ECwaB0uIA&u=%2Fwatch%3Fv%3DrykDVh-QFfw%26feature%3Dshare
July 08, 2019 at 06:46PM by Pixelreddit
https://ift.tt/32itVZx
YouTube
RichText (Flutter Widget of the Week)
Do you want to show a line or paragraph that combines multiple styles? The RichText widget allows you to style your text. Whether you want to emphasize one w...
New post on /r/flutterdev subreddit:
Help with painting app
Hi, I was curious how to create a app to paint a existing image. Like the coloring books, that have a black and white image and you have to paint it with colors. Can I create a app like taht using flutter? Does someone know an article about this, or an video, it would really help me.Thanks!
July 08, 2019 at 07:47PM by murilinhoPs
https://ift.tt/2XPMvsz
Help with painting app
Hi, I was curious how to create a app to paint a existing image. Like the coloring books, that have a black and white image and you have to paint it with colors. Can I create a app like taht using flutter? Does someone know an article about this, or an video, it would really help me.Thanks!
July 08, 2019 at 07:47PM by murilinhoPs
https://ift.tt/2XPMvsz
reddit
r/FlutterDev - Help with painting app
0 votes and 0 comments so far on Reddit
New tweet from FlutterDev:
With RichText, you can create a line or paragraph that combines multiple styles. Whether you want to emphasize one word in bold or display another in a different color or font, this widget can help.
Click here for more #WidgetoftheWeek tips ↓ pic.twitter.com/CVzD7RXLmP— Flutter (@FlutterDev) July 8, 2019
July 08, 2019 at 08:27PM
http://twitter.com/FlutterDev/status/1148297507539017728
With RichText, you can create a line or paragraph that combines multiple styles. Whether you want to emphasize one word in bold or display another in a different color or font, this widget can help.
Click here for more #WidgetoftheWeek tips ↓ pic.twitter.com/CVzD7RXLmP— Flutter (@FlutterDev) July 8, 2019
July 08, 2019 at 08:27PM
http://twitter.com/FlutterDev/status/1148297507539017728
Twitter
#widgetoftheweek hashtag on Twitter
15h ago @FlutterDev tweeted: "✏️ Writing your own button controls from.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
Breaking change #36900 (in the upcoming Dart 2.5.0 release): Declare return types of Uint8List
https://ift.tt/2LHmmFT
July 08, 2019 at 08:12PM by EngineerScientist
https://ift.tt/2JBMW0O
Breaking change #36900 (in the upcoming Dart 2.5.0 release): Declare return types of Uint8List
https://ift.tt/2LHmmFT
July 08, 2019 at 08:12PM by EngineerScientist
https://ift.tt/2JBMW0O
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 FlutterDev:
With RichText, you can create a line or paragraph that combines multiple styles. Whether you want to emphasize one word in bold or display another in a different color or font, this widget can help.
Click here for more #WidgetoftheWeek tips ↓ pic.twitter.com/K51fEuRm1m— Flutter (@FlutterDev) July 8, 2019
July 08, 2019 at 09:01PM
http://twitter.com/FlutterDev/status/1148306199550427136
With RichText, you can create a line or paragraph that combines multiple styles. Whether you want to emphasize one word in bold or display another in a different color or font, this widget can help.
Click here for more #WidgetoftheWeek tips ↓ pic.twitter.com/K51fEuRm1m— Flutter (@FlutterDev) July 8, 2019
July 08, 2019 at 09:01PM
http://twitter.com/FlutterDev/status/1148306199550427136
Twitter
#widgetoftheweek hashtag on Twitter
15h ago @FlutterDev tweeted: "✏️ Writing your own button controls from.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
what new in fltter 1.7.8 stable ver?
what new in fltter 1.7.8 stable ver?
July 08, 2019 at 09:11PM by Kotaibaw
https://ift.tt/2LHv0nP
what new in fltter 1.7.8 stable ver?
what new in fltter 1.7.8 stable ver?
July 08, 2019 at 09:11PM by Kotaibaw
https://ift.tt/2LHv0nP
reddit
r/FlutterDev - what new in fltter 1.7.8 stable ver?
0 votes and 3 comments so far on Reddit