New post on /r/flutterdev subreddit:
DCli 1.0 released - package for building cli apps in Dart - cross post
After almost 18 months of solid development I'm rather pleased to announce the 1.0 release of DCli.DCli is a library and tooling for creating command line (CLI) scripts and applications using Dart.Internally Noojee now has some 100K+ lines of Dart/DCli apps running our entire production environment.We have replaced a patchwork of bash, ruby, go, java and python scripts with a devops environment written entirely in Dart.I've tried multiple times to achieve what DCli does but each time I've felt the solution fell short due to issues with the language I was using. This time was different and I'm really excited about where Dart is going and what DCli can achieve.When you look at Dart as a whole it is quite different to other languages and I think this is going to be telling over the next decade as Dart begins to dominate the programming rankings.I believe that finally we have one language to rule them all ;) *As always, there is more work to be done, but if you are a Dart developer then DCli is worth taking out for a spin. At the very least it's time to retire all of those unmaintainable bash and perl scripts.
April 19, 2021 at 10:08AM by bsutto
https://ift.tt/3amrxXj
DCli 1.0 released - package for building cli apps in Dart - cross post
After almost 18 months of solid development I'm rather pleased to announce the 1.0 release of DCli.DCli is a library and tooling for creating command line (CLI) scripts and applications using Dart.Internally Noojee now has some 100K+ lines of Dart/DCli apps running our entire production environment.We have replaced a patchwork of bash, ruby, go, java and python scripts with a devops environment written entirely in Dart.I've tried multiple times to achieve what DCli does but each time I've felt the solution fell short due to issues with the language I was using. This time was different and I'm really excited about where Dart is going and what DCli can achieve.When you look at Dart as a whole it is quite different to other languages and I think this is going to be telling over the next decade as Dart begins to dominate the programming rankings.I believe that finally we have one language to rule them all ;) *As always, there is more work to be done, but if you are a Dart developer then DCli is worth taking out for a spin. At the very least it's time to retire all of those unmaintainable bash and perl scripts.
void main(List<String> args) { final search = ask('search:', required: true, validator: Ask.alphaNumeric); print('Searching for $search'); find('*.dart', recursive: true).forEach((file) { print('grepping $file for $search'); 'grep $search $file'.run; }); createDir('/home/some/dir', recursive: true); }Manual: https://bsutton.gitbook.io/dcli/Repo: https://github.com/bsutton/dcliTo use the optional cli tooling:
dart pub global activate dcliBrett SuttonNoojee IT.* only appropriate amounts of kool-aid were consumed.
April 19, 2021 at 10:08AM by bsutto
https://ift.tt/3amrxXj
New post on /r/flutterdev subreddit:
Aqueduct is dead, Long live Conduit - cross post
You may have heard that the Dart REST server, Aqueduct, has been discontinued.I'm now rather pleased to announce that a new community has formed around the ashes of Aqueduct to create the Conduit project.Starting with the existing Aqueduct code base, the Conduit team has renamed the project and have now completed Conduit's migration to nnbd and released a beta version of the code.Except for naming conventions and nnbd changes, Conduit is fully compatible with Aqueduct.Once we have sufficient feedback from the beta we will move forward with a release; hopefully in the next few weeks.I'm a true believer in Dart's future, with server side Dart development being the next big step forward.The Flutter/Conduit pair makes doing full stack development using a single language not only viable but optimal. Add DCli* to automate your production environment and you have a single language to rule your entire devops platform.I look forward to working with the community to make that a reality.If you are interested in getting involved or just want to take Conduit out for a spin then here are a few resources that you may find useful.Online manual: https://gitbook.theconduit.dev/Discord Invite: https://discord.gg/zhUfGdxvGithub repo: https://github.com/conduit-dart/conduitMigration guide (aqueduct to conduit): https://gitbook.theconduit.dev/migration_guidePub.dev: https://pub.dev/packages/conduit/versions/2.0.0-b1Note: to get the beta you MUST use:dart pub global activate conduit 2.0.0-b1Regards,Brett SuttonNoojee IT.* apologies, DCli is my passion project so I just have to mention it.https://pub.dev/packages/dcli
April 19, 2021 at 09:32AM by bsutto
https://ift.tt/3mXKswV
Aqueduct is dead, Long live Conduit - cross post
You may have heard that the Dart REST server, Aqueduct, has been discontinued.I'm now rather pleased to announce that a new community has formed around the ashes of Aqueduct to create the Conduit project.Starting with the existing Aqueduct code base, the Conduit team has renamed the project and have now completed Conduit's migration to nnbd and released a beta version of the code.Except for naming conventions and nnbd changes, Conduit is fully compatible with Aqueduct.Once we have sufficient feedback from the beta we will move forward with a release; hopefully in the next few weeks.I'm a true believer in Dart's future, with server side Dart development being the next big step forward.The Flutter/Conduit pair makes doing full stack development using a single language not only viable but optimal. Add DCli* to automate your production environment and you have a single language to rule your entire devops platform.I look forward to working with the community to make that a reality.If you are interested in getting involved or just want to take Conduit out for a spin then here are a few resources that you may find useful.Online manual: https://gitbook.theconduit.dev/Discord Invite: https://discord.gg/zhUfGdxvGithub repo: https://github.com/conduit-dart/conduitMigration guide (aqueduct to conduit): https://gitbook.theconduit.dev/migration_guidePub.dev: https://pub.dev/packages/conduit/versions/2.0.0-b1Note: to get the beta you MUST use:dart pub global activate conduit 2.0.0-b1Regards,Brett SuttonNoojee IT.* apologies, DCli is my passion project so I just have to mention it.https://pub.dev/packages/dcli
April 19, 2021 at 09:32AM by bsutto
https://ift.tt/3mXKswV
New post on /r/flutterdev subreddit:
Another backend question for flutter devs.
Is flask and django just as good of a backend or one has a better fit than the other for some specific reason? If so, what is it?
April 19, 2021 at 01:42PM by C0d3rStreak
https://ift.tt/2RNoilx
Another backend question for flutter devs.
Is flask and django just as good of a backend or one has a better fit than the other for some specific reason? If so, what is it?
April 19, 2021 at 01:42PM by C0d3rStreak
https://ift.tt/2RNoilx
reddit
Another backend question for flutter devs.
Is flask and django just as good of a backend or one has a better fit than the other for some specific reason? If so, what is it?
New post on /r/flutterdev subreddit:
Flutter Web performance demo / optimization strategies
https://twitter.com/creativemaybeno/status/1384099462897831937?s=20
April 19, 2021 at 01:39PM by creativemaybeno
https://ift.tt/3tBmSsg
Flutter Web performance demo / optimization strategies
https://twitter.com/creativemaybeno/status/1384099462897831937?s=20
April 19, 2021 at 01:39PM by creativemaybeno
https://ift.tt/3tBmSsg
Twitter
creativecreatorormaybenot
This demo shows #Flutter web can be extremely performant when done right 😃 Once I enable my subtree caching & lazy viewport algorithms, the performance skyrockets 🚀 (see my custom overlay) All rects are nested custom widgets in a two-dimensional fully transformable…
New post on /r/flutterdev subreddit:
barcode_scan2 was reborned with sound null safety support instead of original barcode_scan, discontinued last year
https://ift.tt/3uWws9e
April 19, 2021 at 01:17PM by mono0926
https://ift.tt/3tvyvkB
barcode_scan2 was reborned with sound null safety support instead of original barcode_scan, discontinued last year
https://ift.tt/3uWws9e
April 19, 2021 at 01:17PM by mono0926
https://ift.tt/3tvyvkB
Dart packages
barcode_scan2 | Flutter Package
A flutter plugin for scanning 2D barcodes and QRCodes via camera.
New post on /r/flutterdev subreddit:
Show aligned dialogs in Flutter
Dialog is an important interaction model in UI design. In Flutter, you can open a dialog by calling the showDialog function. This brief post introduces aligned_dialog package that allows you to open dialogs with more positioning and transitioning customizability.
April 19, 2021 at 02:33PM by Happycodeine
https://ift.tt/3tyAW5E
Show aligned dialogs in Flutter
Dialog is an important interaction model in UI design. In Flutter, you can open a dialog by calling the showDialog function. This brief post introduces aligned_dialog package that allows you to open dialogs with more positioning and transitioning customizability.
April 19, 2021 at 02:33PM by Happycodeine
https://ift.tt/3tyAW5E
Medium
Show aligned dialogs in Flutter
Let you open a dialog in Flutter that aligns itself to the widget that opens it.
New post on /r/flutterdev subreddit:
AR Core Flutter
Can anyone please me how to measure distance using AR Core plugin?
April 19, 2021 at 02:31PM by paul_dip
https://ift.tt/2RNvRIX
AR Core Flutter
Can anyone please me how to measure distance using AR Core plugin?
April 19, 2021 at 02:31PM by paul_dip
https://ift.tt/2RNvRIX
reddit
AR Core Flutter
Can anyone please me how to measure distance using AR Core plugin?
New post on /r/flutterdev subreddit:
Size does matter — Flutter dependency management. Some words comparing JS and Flutter dependency management solutions. Writing this article changed my perspective a little - doing a small research is a good thing 😉
https://ift.tt/3sCuN7y
April 19, 2021 at 04:15PM by ThatLukeUrban
https://ift.tt/3dtu1VN
Size does matter — Flutter dependency management. Some words comparing JS and Flutter dependency management solutions. Writing this article changed my perspective a little - doing a small research is a good thing 😉
https://ift.tt/3sCuN7y
April 19, 2021 at 04:15PM by ThatLukeUrban
https://ift.tt/3dtu1VN
Medium
Size does matter — Flutter dependency management
How Flutter handles packages compared to others like npm and yarn.
New post on /r/flutterdev subreddit:
How do your manage styling your app in Flutter?
I know this is a pretty broad question, but I wanted to know how some of you make your styling/design system. I would personally start off with Material design, but sometimes I feel that it does too much for you. For instance, the Material AppBar seems to have a pretty specific padding value, and if you want to change that, it can be difficult.Is there anything like a Tailwind for Flutter styling? I feel like that will be useful
April 19, 2021 at 03:43PM by buzzerperson
https://ift.tt/3gnOP3c
How do your manage styling your app in Flutter?
I know this is a pretty broad question, but I wanted to know how some of you make your styling/design system. I would personally start off with Material design, but sometimes I feel that it does too much for you. For instance, the Material AppBar seems to have a pretty specific padding value, and if you want to change that, it can be difficult.Is there anything like a Tailwind for Flutter styling? I feel like that will be useful
April 19, 2021 at 03:43PM by buzzerperson
https://ift.tt/3gnOP3c
reddit
How do your manage styling your app in Flutter?
I know this is a pretty broad question, but I wanted to know how some of you make your styling/design system. I would personally start off with...
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 81 Tutorials, videos, packages, and much more!
https://ift.tt/2QDyegV
April 19, 2021 at 03:06PM by vensign
https://ift.tt/3aoVxBX
Flutter Tap Weekly Newsletter Week 81 Tutorials, videos, packages, and much more!
https://ift.tt/2QDyegV
April 19, 2021 at 03:06PM by vensign
https://ift.tt/3aoVxBX
Fluttertap
Newsletter Issue 81
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 81
New post on Flutter Dev Google group:
App Clips issue
Hi team, Im in troubles to upload an app clip to app store with flutter because the size is bigger than 10Mb . The big problem is that we made the app completly with flutter, and now we can upload to the app store because the new politics with IOs 14. My question is: It's possible to measure the
April 19, 2021 at 04:36PM by Matias Nurnberg
https://ift.tt/3aoQlhp
App Clips issue
Hi team, Im in troubles to upload an app clip to app store with flutter because the size is bigger than 10Mb . The big problem is that we made the app completly with flutter, and now we can upload to the app store because the new politics with IOs 14. My question is: It's possible to measure the
April 19, 2021 at 04:36PM by Matias Nurnberg
https://ift.tt/3aoQlhp
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:
Flutter medical image/file view DICOM File and doc,docx,pdf view/open in flutter app
Hello, I am new to flutter there is an requirement for me to view medical image (DICOM file /image) how to view/open in my flutter app and View PDF and doc,docx (especially) in android and ios application without using or opening any other document viewer apps. I need to show PDF and doc,docx
April 19, 2021 at 05:44PM by Navnath Hajare
https://ift.tt/2QfLhVR
Flutter medical image/file view DICOM File and doc,docx,pdf view/open in flutter app
Hello, I am new to flutter there is an requirement for me to view medical image (DICOM file /image) how to view/open in my flutter app and View PDF and doc,docx (especially) in android and ios application without using or opening any other document viewer apps. I need to show PDF and doc,docx
April 19, 2021 at 05:44PM by Navnath Hajare
https://ift.tt/2QfLhVR
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 vs. Swift for iOS Apps: Which one is better in 2021?
https://ift.tt/3e60iRS
April 19, 2021 at 07:36PM by elizaveta123321
https://ift.tt/3aqbGXR
Flutter vs. Swift for iOS Apps: Which one is better in 2021?
https://ift.tt/3e60iRS
April 19, 2021 at 07:36PM by elizaveta123321
https://ift.tt/3aqbGXR
Evrone
Flutter vs. Swift for iOS Apps: Which one is better in 2021?
The two main choices for iOS app development are Flutter / Dart and Native iOS / Swift. We’ve provided this mobile app framework comparison to help you figure out which framework or language is right for your project.
New post on /r/flutterdev subreddit:
Backend?
I work on my startup idea which is an e-learning platform and it's pretty much similar to Udemy but It's really hard to decide which backend I will use it's a mobile and web application. I watch tons of videos and article where peoples are said it's doesn't matter which backend u use but I want to know the real or perfect answer (which is followed by company or startup) so I don't face any technical issue in future like expanding, exploringhere the list which I want in my project:1: Mobile (Flutter), Web (Flutter/React), Admin (Web)2: Media Storage (AWS)3: Multi Vendor Plateform4: Some Social Media fracture like follow and real-time chat (encrypted if possible)
April 19, 2021 at 09:00PM by Prashant_4200
https://ift.tt/3n0E08g
Backend?
I work on my startup idea which is an e-learning platform and it's pretty much similar to Udemy but It's really hard to decide which backend I will use it's a mobile and web application. I watch tons of videos and article where peoples are said it's doesn't matter which backend u use but I want to know the real or perfect answer (which is followed by company or startup) so I don't face any technical issue in future like expanding, exploringhere the list which I want in my project:1: Mobile (Flutter), Web (Flutter/React), Admin (Web)2: Media Storage (AWS)3: Multi Vendor Plateform4: Some Social Media fracture like follow and real-time chat (encrypted if possible)
April 19, 2021 at 09:00PM by Prashant_4200
https://ift.tt/3n0E08g
reddit
Backend?
I work on my startup idea which is an e-learning platform and it's pretty much similar to Udemy but It's really hard to decide which backend I...
New post on Flutter Dev Google group:
rxdart Bloc to Bloc Communication Multiple BLoCs
Hi team, I'm using flutter rxdart. Multiple blocs. Ex: BlocA, BlocB, BlocC etc... How to communicate BlocA to BlocB, BlocA to BlocC, BlocB to BlocC etc... My Project have HomeScreen, SearchScreen, SearchResult Screen. like homebloc, searchBloc, resultBloc If User Enter Search text Result Screen
April 19, 2021 at 09:42PM by Murali Kumar
https://ift.tt/2P8AfRS
rxdart Bloc to Bloc Communication Multiple BLoCs
Hi team, I'm using flutter rxdart. Multiple blocs. Ex: BlocA, BlocB, BlocC etc... How to communicate BlocA to BlocB, BlocA to BlocC, BlocB to BlocC etc... My Project have HomeScreen, SearchScreen, SearchResult Screen. like homebloc, searchBloc, resultBloc If User Enter Search text Result Screen
April 19, 2021 at 09:42PM by Murali Kumar
https://ift.tt/2P8AfRS
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 Tutorial - Drag & Drop In ListView (Johannes Milke)
https://www.youtube.com/watch?v=HmiaGyf55ZM
April 19, 2021 at 09:55PM by JohannesMilke
https://ift.tt/3dsX5Nf
Flutter Tutorial - Drag & Drop In ListView (Johannes Milke)
https://www.youtube.com/watch?v=HmiaGyf55ZM
April 19, 2021 at 09:55PM by JohannesMilke
https://ift.tt/3dsX5Nf
YouTube
Flutter Tutorial - Drag & Drop In ListView
Use Flutter to drag and drop items within the ListView to other locations and also drag the whole listview around.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
👉 12 Week Flutter Training | https://heyflutter.com…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
👉 12 Week Flutter Training | https://heyflutter.com…
New post on /r/flutterdev subreddit:
deep link not handle link in ios ,in android is handling and get the link
Hi , i am using universal link to open my app from link in another app , I need to handle the link in clicked (i am using uni_link plugin).set this code in initState() {Super.initState();Uri initialUri = await getInitialUri();//I am set this statement inside Future.delayed to use await}In android device I get the link when click and open my appBut in iOS do not read it , how can I read the link ?
April 19, 2021 at 09:31PM by muhammadAlshelleh
https://ift.tt/3sroJhW
deep link not handle link in ios ,in android is handling and get the link
Hi , i am using universal link to open my app from link in another app , I need to handle the link in clicked (i am using uni_link plugin).set this code in initState() {Super.initState();Uri initialUri = await getInitialUri();//I am set this statement inside Future.delayed to use await}In android device I get the link when click and open my appBut in iOS do not read it , how can I read the link ?
April 19, 2021 at 09:31PM by muhammadAlshelleh
https://ift.tt/3sroJhW
reddit
deep link not handle link in ios ,in android is handling and get...
Hi , i am using universal link to open my app from link in another app , I need to handle the link in clicked (i am using uni\_link plugin).set...
New post on /r/flutterdev subreddit:
[META] Can we talk about questions?
So I know we have a subreddit rule that all questions go to /r/flutterhelpBut it's not obvious under a "please read the rules link" that no one even clicks on, and there are several help questions posted every day.I think the mods need to either a) step up enforcement of the rules or b) examine the rules.I'm all for having a weekly questions sticky like other dev subreddits have, but if rule breaking posts are going to stay up for a long while, then we might not as well have that rule.I fully know the mods are volunteers, and have other lives, but then we should look at changing the rules to something that can be reasonable enforced.
April 19, 2021 at 11:16PM by DoPeopleEvenLookHere
https://ift.tt/2P7ba9U
[META] Can we talk about questions?
So I know we have a subreddit rule that all questions go to /r/flutterhelpBut it's not obvious under a "please read the rules link" that no one even clicks on, and there are several help questions posted every day.I think the mods need to either a) step up enforcement of the rules or b) examine the rules.I'm all for having a weekly questions sticky like other dev subreddits have, but if rule breaking posts are going to stay up for a long while, then we might not as well have that rule.I fully know the mods are volunteers, and have other lives, but then we should look at changing the rules to something that can be reasonable enforced.
April 19, 2021 at 11:16PM by DoPeopleEvenLookHere
https://ift.tt/2P7ba9U
reddit
[META] Can we talk about questions?
So I know we have a subreddit rule that all questions go to /r/flutterhelp But it's not obvious under a "please read the rules link" that no one...
New post on /r/flutterdev subreddit:
Flutter — 5 little things to know — Part 1 (Packages)
https://ift.tt/3xcARam
April 20, 2021 at 01:47AM by nonybrighto
https://ift.tt/3gt9Qcz
Flutter — 5 little things to know — Part 1 (Packages)
https://ift.tt/3xcARam
April 20, 2021 at 01:47AM by nonybrighto
https://ift.tt/3gt9Qcz
Medium
Flutter — 5 little things to know — Part 1 (Packages)
Learn 5 little things about flutter packages
New post on /r/flutterdev subreddit:
Open Source - Siri tells dad joke before taking picture (REST/blocs/injection/routes/freezed...)
Recently my work had a Fed Ex day where you spend the whole day making any project you want. I made a Flutter app that makes Siri tell a dad joke before taking your picture. Just a fun app but uses REST api, blocs, injection, routes, and more concepts in Flutter. I thought I would release it open source for anyone who wants to view a simple app and dive into those concepts.Here is the code:https://github.com/BradenBagby/joke_camIf you want to check it out in the AppStore/Google Play here it isAppStore: https://apps.apple.com/us/app/joke-cam-camera-tells-jokes/id1562197615Google Play: https://play.google.com/store/apps/details?id=com.bradenbagby.happy_cameraFinally without making this too much of a plug, I plan to start releasing mini Flutter projects that mix cool/fun ideas with important concepts. If you are interested in that be sure to subscribe to my YouTube: https://www.youtube.com/channel/UCYY1FjawndyXncV8xdKjO5wI hope you can find this fun and useful!
April 20, 2021 at 01:33AM by BradenBagby
https://ift.tt/3n0dqMy
Open Source - Siri tells dad joke before taking picture (REST/blocs/injection/routes/freezed...)
Recently my work had a Fed Ex day where you spend the whole day making any project you want. I made a Flutter app that makes Siri tell a dad joke before taking your picture. Just a fun app but uses REST api, blocs, injection, routes, and more concepts in Flutter. I thought I would release it open source for anyone who wants to view a simple app and dive into those concepts.Here is the code:https://github.com/BradenBagby/joke_camIf you want to check it out in the AppStore/Google Play here it isAppStore: https://apps.apple.com/us/app/joke-cam-camera-tells-jokes/id1562197615Google Play: https://play.google.com/store/apps/details?id=com.bradenbagby.happy_cameraFinally without making this too much of a plug, I plan to start releasing mini Flutter projects that mix cool/fun ideas with important concepts. If you are interested in that be sure to subscribe to my YouTube: https://www.youtube.com/channel/UCYY1FjawndyXncV8xdKjO5wI hope you can find this fun and useful!
April 20, 2021 at 01:33AM by BradenBagby
https://ift.tt/3n0dqMy
GitHub
BradenBagby/joke_cam
Contribute to BradenBagby/joke_cam development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
imperative_flutter my first package
https://github.com/JunioJsv/imperative-flutterHello guys, I wanted to share this package with you, it is still very simple but I think the idea is good, this package aims at state management using concepts of imperative programming, eg using id to manipulate the state of a specific widget in the tree.Olá pessoal, queria compartilhar esse package com vocês, ele ainda é bem simples porem acho que a ideia é boa, esse package visa o gerenciamento de estado usando conceitos de programação imperativa, ex utilizar id para manipular o estado de um widget especifico na arvore.
April 20, 2021 at 01:15AM by JunioJsv
https://ift.tt/3gpU9mu
imperative_flutter my first package
https://github.com/JunioJsv/imperative-flutterHello guys, I wanted to share this package with you, it is still very simple but I think the idea is good, this package aims at state management using concepts of imperative programming, eg using id to manipulate the state of a specific widget in the tree.Olá pessoal, queria compartilhar esse package com vocês, ele ainda é bem simples porem acho que a ideia é boa, esse package visa o gerenciamento de estado usando conceitos de programação imperativa, ex utilizar id para manipular o estado de um widget especifico na arvore.
April 20, 2021 at 01:15AM by JunioJsv
https://ift.tt/3gpU9mu
GitHub
JunioJsv/imperative-flutter
Manage the state of your widgets using imperative programming concepts. - JunioJsv/imperative-flutter