New post on /r/flutterdev subreddit:
Simple self-tracking app built with Flutter
Built a simple self-tracking app with Flutter; you can find the source code (and app store links) at https://github.com/zenobase/zenobase-durations.BackgroundI had looked into Cordova a few years ago, but it ended up not being worth the trouble compared to just writing a progressive web app. Also looked at React Native early last year, but felt like I wouldn't get where I needed to without writing native code, which was too much trouble.When I came across Flutter, almost everything I could think of seemed to have been taken care of, and I felt I could get a simple app done without spending weeks creating custom build scripts, figuring out how to test my code, manage dependencies etc.Notes - Settled on using the redux pattern for state management, using ReduRx. Having used event sourcing on backend projects, this approach felt quite natural. - Data is stored locally using sembast. While data is only read on startup, changes are appended after every state change (via a "middleware" component). - Cloudmagic made setting up CI builds (incl iOS) about as quick and easy as can be. - Started out using IntelliJ IDEA (since I had that set up already) plus Flutter and related plugins, but switched to Android Studio when I realized IDEA was still missing functionality. - Dart is quite nice (though I'd still rather be using Kotlin), see this discussion. - Localization seemed overly complicated (plus there's more than one way to do it)... - Not really a Flutter issue, but figuring out the Google Play and App Store rules and workflows, plus collecting screenshots and descriptions for the store listings for multiple languages and devices turned out to be a bit more tedious than expected.
January 08, 2020 at 08:58AM by ercjn
https://ift.tt/39LpSst
Simple self-tracking app built with Flutter
Built a simple self-tracking app with Flutter; you can find the source code (and app store links) at https://github.com/zenobase/zenobase-durations.BackgroundI had looked into Cordova a few years ago, but it ended up not being worth the trouble compared to just writing a progressive web app. Also looked at React Native early last year, but felt like I wouldn't get where I needed to without writing native code, which was too much trouble.When I came across Flutter, almost everything I could think of seemed to have been taken care of, and I felt I could get a simple app done without spending weeks creating custom build scripts, figuring out how to test my code, manage dependencies etc.Notes - Settled on using the redux pattern for state management, using ReduRx. Having used event sourcing on backend projects, this approach felt quite natural. - Data is stored locally using sembast. While data is only read on startup, changes are appended after every state change (via a "middleware" component). - Cloudmagic made setting up CI builds (incl iOS) about as quick and easy as can be. - Started out using IntelliJ IDEA (since I had that set up already) plus Flutter and related plugins, but switched to Android Studio when I realized IDEA was still missing functionality. - Dart is quite nice (though I'd still rather be using Kotlin), see this discussion. - Localization seemed overly complicated (plus there's more than one way to do it)... - Not really a Flutter issue, but figuring out the Google Play and App Store rules and workflows, plus collecting screenshots and descriptions for the store listings for multiple languages and devices turned out to be a bit more tedious than expected.
January 08, 2020 at 08:58AM by ercjn
https://ift.tt/39LpSst
GitHub
zenobase/zenobase-durations
Contribute to zenobase/zenobase-durations development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
pushy notifications
did any one used Pushy notifications in flutter ?
January 08, 2020 at 10:21AM by omarsherifz
https://ift.tt/2QUX3Bs
pushy notifications
did any one used Pushy notifications in flutter ?
January 08, 2020 at 10:21AM by omarsherifz
https://ift.tt/2QUX3Bs
reddit
pushy notifications
did any one used Pushy notifications in flutter ?
New post on /r/flutterdev subreddit:
Why Android Developers should pay attention to Flutter in 2020
https://ift.tt/37waWwy
January 08, 2020 at 12:29PM by Gigatronbot
https://ift.tt/2T6cyJo
Why Android Developers should pay attention to Flutter in 2020
https://ift.tt/37waWwy
January 08, 2020 at 12:29PM by Gigatronbot
https://ift.tt/2T6cyJo
Codemagic blog
Why Android Developers should pay attention to Flutter in 2020
Flutter is stronger than ever. All the reasons why Android developers can not ignore Flutter in 2020
New post on /r/flutterdev subreddit:
Looking for Flutter Devs in Mumbai (remote possible)
Hi! We are students from IIT Bombay, Mumbai, working on a startup in Ed-tech domain. We are looking for developers with good experience in developing production scale flutter app. Knowledge about firebase is a plus. The developer can work on a project basis, if preferred. We prefer devs around Mumbai but are open to remote options. If you are interested or can refer someone, please comment here or DM me.
January 08, 2020 at 12:33PM by dx8xb
https://ift.tt/36vd3R7
Looking for Flutter Devs in Mumbai (remote possible)
Hi! We are students from IIT Bombay, Mumbai, working on a startup in Ed-tech domain. We are looking for developers with good experience in developing production scale flutter app. Knowledge about firebase is a plus. The developer can work on a project basis, if preferred. We prefer devs around Mumbai but are open to remote options. If you are interested or can refer someone, please comment here or DM me.
January 08, 2020 at 12:33PM by dx8xb
https://ift.tt/36vd3R7
reddit
Looking for Flutter Devs in Mumbai (remote possible)
Hi! We are students from IIT Bombay, Mumbai, working on a startup in Ed-tech domain. We are looking for developers with good experience in...
New post on /r/flutterdev subreddit:
Flutter UI Showcase
I just made a new Flutter App which I would like to share with you.
It's available in the Google Play store en the source-code is in GitHub. I hope you enjoy and learn something about itJust take a look at: https://github.com/LiveLikeCounter/Flutter-Cryptowallet
January 08, 2020 at 01:52PM by JohanWalhout
https://ift.tt/35xLIwu
Flutter UI Showcase
I just made a new Flutter App which I would like to share with you.
It's available in the Google Play store en the source-code is in GitHub. I hope you enjoy and learn something about itJust take a look at: https://github.com/LiveLikeCounter/Flutter-Cryptowallet
January 08, 2020 at 01:52PM by JohanWalhout
https://ift.tt/35xLIwu
GitHub
GitHub - LiveLikeCounter/Flutter-Cryptowallet: Flutter based Cryptowallet App
Flutter based Cryptowallet App. Contribute to LiveLikeCounter/Flutter-Cryptowallet development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Jiffy v2.2.0 just released
What's new in JiffyAdded more string parsing functionality. See below
January 08, 2020 at 01:37PM by timedjama5262
https://ift.tt/36CGiBI
Jiffy v2.2.0 just released
What's new in JiffyAdded more string parsing functionality. See below
Jiffy("1995/12/25"); // A calendar date part separated by slash "/" Jiffy("19951225"); // Basic (short) full date Jiffy("1995-12-25 12:00:00.000"); // An hour, minute, second, and millisecond time part Jiffy("1995-12-25T12:00:00.000"); ISO dart format Jiffy("1995-12-25T12:00:00.000Z"); ISO dart format (UTC)Added support to Polish locale pl
January 08, 2020 at 01:37PM by timedjama5262
https://ift.tt/36CGiBI
GitHub
GitHub - jama5262/jiffy: Jiffy is a Flutter (Android, IOS and Web) date time package for parsing, manipulating, querying and formatting…
Jiffy is a Flutter (Android, IOS and Web) date time package for parsing, manipulating, querying and formatting dates - jama5262/jiffy
New post on Flutter Dev Google group:
How to remove the right margin and downward arrow of Expansion Panel
[image: photo_2020-01-08_12-26-16.jpg] Tried the Expansion panel with an Image and Name stack as the header, but the Expansion panel is adding a right margin and the arrow icon, is there a way to remove the margin and arrow so as to correct the alignment.
January 08, 2020 at 03:51PM by Gokuldas K M
https://ift.tt/2FsnitE
How to remove the right margin and downward arrow of Expansion Panel
[image: photo_2020-01-08_12-26-16.jpg] Tried the Expansion panel with an Image and Name stack as the header, but the Expansion panel is adding a right margin and the arrow icon, is there a way to remove the margin and arrow so as to correct the alignment.
January 08, 2020 at 03:51PM by Gokuldas K M
https://ift.tt/2FsnitE
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 UI Showcase
I just made a new Flutter App which I would like to share with you.
It's available in the Google Play store en the source-code is in GitHub. I hope you enjoy and learn something about it!
January 08, 2020 at 04:00PM by JohanWalhout
https://ift.tt/36yaii4
Flutter UI Showcase
I just made a new Flutter App which I would like to share with you.
It's available in the Google Play store en the source-code is in GitHub. I hope you enjoy and learn something about it!
January 08, 2020 at 04:00PM by JohanWalhout
https://ift.tt/36yaii4
reddit
Flutter UI Showcase
I just made a new Flutter App which I would like to share with you. It's available in the Google Play store en the source-code is in GitHub. I...
New post on Flutter Dev Google group:
A RenderFlex overflowed by 309 pixels on the right.
Hello Flutter Gang, I need help with this error. Please send me suggestions. Stack( children:
A RenderFlex overflowed by 309 pixels on the right.
Hello Flutter Gang, I need help with this error. Please send me suggestions. Stack( children:
New post on /r/flutterdev subreddit:
Which design pattern to use in app ?
I was actually trying to make a complex app, in which one state depends on another and so I used bloc pattern for that, now I facing very difficulties in implementing some of its features, So can someone suggest which design pattern is best for making a complex app somewhat like Flipkart.
January 08, 2020 at 04:22PM by FlutteryFlirt
https://ift.tt/2NmAvbV
Which design pattern to use in app ?
I was actually trying to make a complex app, in which one state depends on another and so I used bloc pattern for that, now I facing very difficulties in implementing some of its features, So can someone suggest which design pattern is best for making a complex app somewhat like Flipkart.
January 08, 2020 at 04:22PM by FlutteryFlirt
https://ift.tt/2NmAvbV
reddit
Which design pattern to use in app ?
I was actually trying to make a complex app, in which one state depends on another and so I used bloc pattern for that, now I facing very...
New post on /r/flutterdev subreddit:
Apps that convert designs to code.. Has anyone tried supernova studio?
Came across a macOS app called Supernova that allows users to "Convert designs into native mobile apps". What's the catch with apps like this? Is that saying that you can design an app and turn it into a fully functional iOS app without knowing a substantial amount of Swift? I think code gen would be helpful for a lot of the UI.Has anyone tried supernova studio? (supernova.io)
January 07, 2020 at 01:25PM by terezatx
https://ift.tt/39N2Pxw
Apps that convert designs to code.. Has anyone tried supernova studio?
Came across a macOS app called Supernova that allows users to "Convert designs into native mobile apps". What's the catch with apps like this? Is that saying that you can design an app and turn it into a fully functional iOS app without knowing a substantial amount of Swift? I think code gen would be helpful for a lot of the UI.Has anyone tried supernova studio? (supernova.io)
January 07, 2020 at 01:25PM by terezatx
https://ift.tt/39N2Pxw
reddit
Apps that convert designs to code.. Has anyone tried supernova studio?
Came across a macOS app called Supernova that allows users to "Convert designs into native mobile apps". What's the catch with apps like this? Is...
New post on /r/flutterdev subreddit:
Any IOS Developers Convert to Flutter?
I know iOS developers are passionate about their ecosystem and all things Apple and was wondering if any have made the leap to Flutter. With SwiftUI coming out I figured it might not be that many that use Flutter, but it will be interesting to know.
January 08, 2020 at 06:04PM by rubenalvjr
https://ift.tt/35w9okR
Any IOS Developers Convert to Flutter?
I know iOS developers are passionate about their ecosystem and all things Apple and was wondering if any have made the leap to Flutter. With SwiftUI coming out I figured it might not be that many that use Flutter, but it will be interesting to know.
January 08, 2020 at 06:04PM by rubenalvjr
https://ift.tt/35w9okR
reddit
Any IOS Developers Convert to Flutter?
I know iOS developers are passionate about their ecosystem and all things Apple and was wondering if any have made the leap to Flutter. With...
New post on /r/flutterdev subreddit:
Why is TextEditingController always used in Stateful widgets?
While reading the flutter documentation, I came across this article that shows how to handle changes to a text field. What I found interesting is that in this and all other articles regarding
January 08, 2020 at 08:32PM by albaniantech
https://ift.tt/37MYhVZ
Why is TextEditingController always used in Stateful widgets?
While reading the flutter documentation, I came across this article that shows how to handle changes to a text field. What I found interesting is that in this and all other articles regarding
TextEditingController
, the TextEditingController
is always used in a Stateful widget regardless of whether that widget needs to be stateful or not.What is the reason that TextEditingController
is always used with Stateful widgets?January 08, 2020 at 08:32PM by albaniantech
https://ift.tt/37MYhVZ
docs.flutter.dev
Handle changes to a text field
How to detect changes to a text field.
New post on /r/flutterdev subreddit:
With ffi being out for a bit, has there been any proper yaml support (encode & decode) for flutter/dart?
No text found
January 08, 2020 at 10:00PM by SaltTM
https://ift.tt/2QB68QQ
With ffi being out for a bit, has there been any proper yaml support (encode & decode) for flutter/dart?
No text found
January 08, 2020 at 10:00PM by SaltTM
https://ift.tt/2QB68QQ
reddit
With ffi being out for a bit, has there been any proper yaml...
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Toggled button with neomorphic design
Hi all,Just discovered this new design and decided to give it a shot,I managed to create a round widget as a button, on press it goes down,https://imgur.com/gallery/3xt7WY9I used a linear gradient to create the effect while down and boxShadows while up. However the LinearGradient doesn't create the exact same effect as the shadows.https://github.com/Germain-L/flutter_neumorphism/blob/master/lib/widgets/round_button.dartHere's the code for it.The issue with this implementation is that the linear gradient creates a curved effect when the button should be flat. What are your thoughts on this design?
January 08, 2020 at 09:40PM by Week0_
https://ift.tt/36A7gtr
Toggled button with neomorphic design
Hi all,Just discovered this new design and decided to give it a shot,I managed to create a round widget as a button, on press it goes down,https://imgur.com/gallery/3xt7WY9I used a linear gradient to create the effect while down and boxShadows while up. However the LinearGradient doesn't create the exact same effect as the shadows.https://github.com/Germain-L/flutter_neumorphism/blob/master/lib/widgets/round_button.dartHere's the code for it.The issue with this implementation is that the linear gradient creates a curved effect when the button should be flat. What are your thoughts on this design?
January 08, 2020 at 09:40PM by Week0_
https://ift.tt/36A7gtr
Imgur
neumorphism button
Post with 2 votes and 491 views. Shared by Germain90005. neumorphism button
New post on /r/flutterdev subreddit:
Is there any full open source apps using provider?
I'm trying to find a full open source project using the provider library for reference but I have a hard time finding one. Does anyone of you know such a project?
January 08, 2020 at 09:32PM by KoningsGap
https://ift.tt/2QXWg2z
Is there any full open source apps using provider?
I'm trying to find a full open source project using the provider library for reference but I have a hard time finding one. Does anyone of you know such a project?
January 08, 2020 at 09:32PM by KoningsGap
https://ift.tt/2QXWg2z
reddit
Is there any full open source apps using provider?
I'm trying to find a full open source project using the provider library for reference but I have a hard time finding one. Does anyone of you know...
New post on /r/flutterdev subreddit:
FLUTTER CAR VIN BARCODE SCANNER - Fetching Car Makes Using Api
https://youtu.be/4KRtdy2CzAM
January 08, 2020 at 10:26PM by cmcoffee91
https://ift.tt/2N6jQsX
FLUTTER CAR VIN BARCODE SCANNER - Fetching Car Makes Using Api
https://youtu.be/4KRtdy2CzAM
January 08, 2020 at 10:26PM by cmcoffee91
https://ift.tt/2N6jQsX
YouTube
FLUTTER BARCODE SCANNER - Fetching Car Makes Using Api
In this video we will fetch car makes and show them in a Dialog using an API. I will link all the resources below. Vehicle api: https://vpic.nhtsa.dot.gov/ap...
New post on Flutter Dev Google group:
Handling incoming intents in a WebView App
Hi, Here's what I'm trying to do... I want to have an app that hosts a WebView widget. When the user opens an email containing HTML attachment and clicks on the attachment, I want my app to launch and render the HTML contained in the attachment. I started out by following the sample provided
January 08, 2020 at 11:27PM by Artem Portnoy
https://ift.tt/2NnzoJ1
Handling incoming intents in a WebView App
Hi, Here's what I'm trying to do... I want to have an app that hosts a WebView widget. When the user opens an email containing HTML attachment and clicks on the attachment, I want my app to launch and render the HTML contained in the attachment. I started out by following the sample provided
January 08, 2020 at 11:27PM by Artem Portnoy
https://ift.tt/2NnzoJ1
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:
Struggling with animation in Flutter. Help!
Hey all!My team recently contracted a team to build us an app and the developers have built it in Flutter. We'd like polish the app by animating a few elements but this seems to be a sticking point. Our friend is a brilliant animator/illustrator but primarily only works in After Effects and since he's doing this for us as a favour its a bit of a tall order to ask him to learn a whole new software package, Flare, to do the animations.So my next port of call has been Upwork and Fiverr but there doesn't seem to be a whole lot of designers on there who are familiar with Flare. It's also a bit difficult to sift through search results for 'flare' on Dribbble and Behance since its such a common word.Can anyone eitherPoint me in the right direction of where the flare animators are hiding (website, subreddit, etc) orTell me how we can best reliably our After Effects animator? We've looked at using Lottie + Body Movin but unsure how reliable this is.Super grateful for any help!
January 08, 2020 at 11:10PM by SuccessNVodka
https://ift.tt/2N94d3U
Struggling with animation in Flutter. Help!
Hey all!My team recently contracted a team to build us an app and the developers have built it in Flutter. We'd like polish the app by animating a few elements but this seems to be a sticking point. Our friend is a brilliant animator/illustrator but primarily only works in After Effects and since he's doing this for us as a favour its a bit of a tall order to ask him to learn a whole new software package, Flare, to do the animations.So my next port of call has been Upwork and Fiverr but there doesn't seem to be a whole lot of designers on there who are familiar with Flare. It's also a bit difficult to sift through search results for 'flare' on Dribbble and Behance since its such a common word.Can anyone eitherPoint me in the right direction of where the flare animators are hiding (website, subreddit, etc) orTell me how we can best reliably our After Effects animator? We've looked at using Lottie + Body Movin but unsure how reliable this is.Super grateful for any help!
January 08, 2020 at 11:10PM by SuccessNVodka
https://ift.tt/2N94d3U
reddit
Struggling with animation in Flutter. Help!
Hey all! My team recently contracted a team to build us an app and the developers have built it in Flutter. We'd like polish the app by...
New post on /r/flutterdev subreddit:
Is anyone using Ryzen here?
I'll be upgrading my PC soon. Thinking of going for Ryzen 7 2700x, now wondering if it would play nice with the Android emulator. My worry is that because the emulator depends on Intel HAXM, so if I go for Ryzen, the emulator would be too slow to use.Is anyone using Ryzen + Windows, how is the emulator's performance?Just for the record, I'm not gonna change to Linux. My work requires .NET's WCF, so I'm stuck with Windows.
January 09, 2020 at 12:33AM by redfournine
https://ift.tt/36FGsbm
Is anyone using Ryzen here?
I'll be upgrading my PC soon. Thinking of going for Ryzen 7 2700x, now wondering if it would play nice with the Android emulator. My worry is that because the emulator depends on Intel HAXM, so if I go for Ryzen, the emulator would be too slow to use.Is anyone using Ryzen + Windows, how is the emulator's performance?Just for the record, I'm not gonna change to Linux. My work requires .NET's WCF, so I'm stuck with Windows.
January 09, 2020 at 12:33AM by redfournine
https://ift.tt/36FGsbm
reddit
Is anyone using Ryzen here?
I'll be upgrading my PC soon. Thinking of going for Ryzen 7 2700x, now wondering if it would play nice with the Android emulator. My worry is that...
New post on /r/flutterdev subreddit:
Function returning Widget vs instantiating custom Widget
Say I'm refactoring the boilerplate "counter" app. And I extract the following body attribute into a function:
January 09, 2020 at 06:01AM by yjblow
https://ift.tt/2N5PYN1
Function returning Widget vs instantiating custom Widget
Say I'm refactoring the boilerplate "counter" app. And I extract the following body attribute into a function:
class _MyHomePageState extends State<MyHomePage> { int _counter = 0; void _incrementCounter() { setState(() { _counter++; }); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text(widget.title)), body: _bodyContent(context), floatingActionButton: _mainButton() ); } Center _bodyContent(BuildContext context) { return Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('You have pushed the button this many times:'), Text('$_counter', style: Theme.of(context).textTheme.display1), ], ), ); }Why / when would I do that, rather than, say, create my own stateless Widget, a la:
// ... body: BodyWidget(_counter), // ... class BodyWidget extends StatelessWidget { final int counterValue; BodyWidget({this.counterValue}); @override Widget build(BuildContext context) { return Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('You have pushed the button this many times:'), Text('$counterValue', style: Theme.of(context).textTheme.display1), ], ), ); } }
January 09, 2020 at 06:01AM by yjblow
https://ift.tt/2N5PYN1
reddit
Function returning Widget vs instantiating custom Widget
Say I'm refactoring the boilerplate "counter" app. And I extract the following `body` attribute into a function: class _MyHomePageState...