New post on /r/flutterdev subreddit:
Introducing a Flutter Charting Library: Graphic
About a year ago, we published a Flutter charting library: Graphic, aiming to help Flutter app developers in data visualization. It evolves a lot in the past year and has these features now:A Grammar of Graphics: Graphic derives from Leland Wilkinson's book The Grammar of Graphics, and tries to balance between theoretical beauty and practicability. It inherits most concepts, like the graphic algebra.Declarative and Reactive: As is encouraged in Flutter, the chart widget of Graphic is declarative and reactive. The grammar of data visualization is implemented by a declarative specification and the chart will reevaluate automatically on widget update.Interactive: With the signal and selection mechanism, the chart is highly interactive. It is easy to pop a tooltip or scale the coordinate.Customizable: With the shape and figure classes, it's easy to custom your own element, tooltip, annotation, etc.Dataflow Graph and Operators: Graphic has a internal structure of a dataflow graph and operators. That is how the reactive reevaluation and interaction is implemented.Here is the documentation and Example App, and a introducing artical.If you need charts in your Flutter app, welcome to have a look and try!
December 09, 2021 at 09:06AM by entronad
https://ift.tt/3oChbKq
Introducing a Flutter Charting Library: Graphic
About a year ago, we published a Flutter charting library: Graphic, aiming to help Flutter app developers in data visualization. It evolves a lot in the past year and has these features now:A Grammar of Graphics: Graphic derives from Leland Wilkinson's book The Grammar of Graphics, and tries to balance between theoretical beauty and practicability. It inherits most concepts, like the graphic algebra.Declarative and Reactive: As is encouraged in Flutter, the chart widget of Graphic is declarative and reactive. The grammar of data visualization is implemented by a declarative specification and the chart will reevaluate automatically on widget update.Interactive: With the signal and selection mechanism, the chart is highly interactive. It is easy to pop a tooltip or scale the coordinate.Customizable: With the shape and figure classes, it's easy to custom your own element, tooltip, annotation, etc.Dataflow Graph and Operators: Graphic has a internal structure of a dataflow graph and operators. That is how the reactive reevaluation and interaction is implemented.Here is the documentation and Example App, and a introducing artical.If you need charts in your Flutter app, welcome to have a look and try!
December 09, 2021 at 09:06AM by entronad
https://ift.tt/3oChbKq
Dart packages
graphic | Flutter package
A grammar of data visualization and Flutter charting library.
New post on /r/flutterdev subreddit:
Summary of Flutter 2.8 for lazies
https://ift.tt/3EGFyfB
December 09, 2021 at 10:20AM by iisprey
https://ift.tt/31KgohR
Summary of Flutter 2.8 for lazies
https://ift.tt/3EGFyfB
December 09, 2021 at 10:20AM by iisprey
https://ift.tt/31KgohR
Medium
Summary of Flutter 2.8 for lazies
Here is what’s new in Flutter 2.8 and Dart 2.15 in brief
New post on /r/flutterdev subreddit:
5 Things John Learned Fighting Hackers of His App — A must-read for PM’s and CISO’s
Writing this article gave me a lot of insights into mobile security issues. The interviewee made the point: You'll never understand until it happens to you. Have you ever experienced a cloning attack yourself?Mobile Security, RASPs, real-world consequences:https://medium.com/@talsec/5-things-john-learned-fighting-hackers-of-his-app-a-must-read-for-pms-and-ciso-s-463379b49410
December 09, 2021 at 10:18AM by SirionRazzer
https://ift.tt/3rQwami
5 Things John Learned Fighting Hackers of His App — A must-read for PM’s and CISO’s
Writing this article gave me a lot of insights into mobile security issues. The interviewee made the point: You'll never understand until it happens to you. Have you ever experienced a cloning attack yourself?Mobile Security, RASPs, real-world consequences:https://medium.com/@talsec/5-things-john-learned-fighting-hackers-of-his-app-a-must-read-for-pms-and-ciso-s-463379b49410
December 09, 2021 at 10:18AM by SirionRazzer
https://ift.tt/3rQwami
Medium
5 Things John Learned Fighting Hackers of His App — A must-read for PM’s and CISO’s
BetterVision is a popular app for the blind and visually impaired. John’s app suffered a cloning attack, and his In-App purchases got…
New post on /r/flutterdev subreddit:
Did you know that extensions on generic types are possible?
Dart doesn't have a Self type to express the fact that a method returns the same type as its receiver or expects that type as one of its parameters. But there's a workaround. Did you know that you can make the target of an extension generic?Here is an example:
December 09, 2021 at 12:57PM by eibaan
https://ift.tt/3DC8Sm7
Did you know that extensions on generic types are possible?
Dart doesn't have a Self type to express the fact that a method returns the same type as its receiver or expects that type as one of its parameters. But there's a workaround. Did you know that you can make the target of an extension generic?Here is an example:
extension<C extends ChangeNotifier> on C { AspectNotifier<A, C> aspect<A>(A Function(C) aspect) { return AspectNotifier(this, aspect); } }You can now use notifier.aspect with any ChangeNotifier and the parameter type of the the function parameter is always the correct type. I don't think that you can achieve the same thing just with a method.Here's another handy extension that makes dealing with nullable types monal-like:
extension <T extends Object> on T? { U? map<U>(U Function(T) transform) { final that = this; return that != null ? transform(that) : null; } }Assuming that s is a String? instead of s != null ? int.parse(s) : null you can now use s.map(int.parse) which – if you're used to such style from other languages like Swift - looks nicer. If you'd need to also pass a radix, the advantage melts away, though: s.map((i) => int.parse(i, radix: 16)).Still, I like the expressiveness of extensions.
December 09, 2021 at 12:57PM by eibaan
https://ift.tt/3DC8Sm7
reddit
Did you know that extensions on generic types are possible?
Dart doesn't have a `Self` type to express the fact that a method returns the same type as its receiver or expects that type as one of its...
New post on /r/flutterdev subreddit:
Flutter Work Manager | Background Activity Manager
https://youtu.be/NtKgbunuq6Q
December 09, 2021 at 12:43PM by Some_Cartographer_23
https://ift.tt/3pGjo73
Flutter Work Manager | Background Activity Manager
https://youtu.be/NtKgbunuq6Q
December 09, 2021 at 12:43PM by Some_Cartographer_23
https://ift.tt/3pGjo73
YouTube
Flutter Work Manager, Foreground Background Service & Notification, Fix Network Connectivity & More
Click Here for more flutter: http://tiny.cc/th7auz
#Flutter #FluttterBackgroundManager #FlutterBackgroundActivity #FlutterWorkManager #FlutterFree #FlutterForegroundManager #FlutterBackend #FlutterNetworkConnectivity #FlutterBatteryNotLow #FlutterRequiresCharging…
#Flutter #FluttterBackgroundManager #FlutterBackgroundActivity #FlutterWorkManager #FlutterFree #FlutterForegroundManager #FlutterBackend #FlutterNetworkConnectivity #FlutterBatteryNotLow #FlutterRequiresCharging…
New post on /r/flutterdev subreddit:
How to Parse Large JSON Data with Isolates in Dart 2.15
https://ift.tt/3Iz2sIa
December 09, 2021 at 01:51PM by bizz84
https://ift.tt/3lOSfOl
How to Parse Large JSON Data with Isolates in Dart 2.15
https://ift.tt/3Iz2sIa
December 09, 2021 at 01:51PM by bizz84
https://ift.tt/3lOSfOl
Code With Andrea
How to Parse Large JSON Data with Isolates in Dart 2.15
How to parse large JSON data using compute, Isolate.spawn, and Isolate.exit - a new feature for fast concurrency with worker isolates in Dart 2.15.
New post on /r/flutterdev subreddit:
Hiring UK based Flutter developers
Will disclose company name and application link after we've had a brief chat about your experience working with Flutter and OOP more generally - knowledge of Swift will be a bonus. I have recently secured a permanent role with this company and they've asked if I know any decent UK based devs interested in a perm contract - need to be willing to travel to either Manchester or Birmingham occasionally.If you're interested, DM me a link to your portfolio of past work or anything else you feel would give a good indication of your abilities and i'll shortlist a few to have a zoom call with.If I think you're suitable I'll send you the application link and notify HR that I've referred you.
December 09, 2021 at 01:27PM by Addadahine
https://ift.tt/31KKzp9
Hiring UK based Flutter developers
Will disclose company name and application link after we've had a brief chat about your experience working with Flutter and OOP more generally - knowledge of Swift will be a bonus. I have recently secured a permanent role with this company and they've asked if I know any decent UK based devs interested in a perm contract - need to be willing to travel to either Manchester or Birmingham occasionally.If you're interested, DM me a link to your portfolio of past work or anything else you feel would give a good indication of your abilities and i'll shortlist a few to have a zoom call with.If I think you're suitable I'll send you the application link and notify HR that I've referred you.
December 09, 2021 at 01:27PM by Addadahine
https://ift.tt/31KKzp9
reddit
Hiring UK based Flutter developers
Will disclose company name and application link after we've had a brief chat about your experience working with Flutter and OOP more generally -...
New post on /r/flutterdev subreddit:
Best Self-Hosted (SDK||API) for document management ? SH-alternative Firestore?
Hello guys,We are currently developing with Flutter + WCF Rest Service + SQL DB.Now we want to integrate a efficient way to work with document(#Document-Management..) => best case on the level(functionallity) of the well-known companies(OneDrive,Dropbox,Google Drive..)So Firestore were a good way.. but we need a self-hosted solution.And we dont want to re-invent the wheel.maybe anyone can give me some good tips.Thank you!
December 09, 2021 at 01:17PM by R0njack
https://ift.tt/3dwBFOC
Best Self-Hosted (SDK||API) for document management ? SH-alternative Firestore?
Hello guys,We are currently developing with Flutter + WCF Rest Service + SQL DB.Now we want to integrate a efficient way to work with document(#Document-Management..) => best case on the level(functionallity) of the well-known companies(OneDrive,Dropbox,Google Drive..)So Firestore were a good way.. but we need a self-hosted solution.And we dont want to re-invent the wheel.maybe anyone can give me some good tips.Thank you!
December 09, 2021 at 01:17PM by R0njack
https://ift.tt/3dwBFOC
reddit
Best Self-Hosted (SDK||API) for document management ?...
Hello guys, We are currently developing with Flutter + WCF Rest Service + SQL DB. Now we want to integrate a efficient way to work with...
New post on /r/flutterdev subreddit:
Flutter Download Tweets, Render 3D Datasets & Co. - 47 - PUB.DEV RELEASES
https://youtube.com/watch?v=jqOQ9O95fp0&feature=share
December 09, 2021 at 03:05PM by syntacops
https://ift.tt/3DBsVRL
Flutter Download Tweets, Render 3D Datasets & Co. - 47 - PUB.DEV RELEASES
https://youtube.com/watch?v=jqOQ9O95fp0&feature=share
December 09, 2021 at 03:05PM by syntacops
https://ift.tt/3DBsVRL
YouTube
Flutter Download Tweets, Render 3D Datasets & Co. - 47 - PUB.DEV RELEASES
Week 47 brings a flutter package to download tweets from twitter, 3D modeling, slider_captcha and many more useful packages. #flutter #download #tweets
📺 FULL PLAYLIST: http://releases.syntacops.com
🔙 PREVIOUS EPISODE: https://www.youtube.com/watch?v=QPFkbE9SXwE…
📺 FULL PLAYLIST: http://releases.syntacops.com
🔙 PREVIOUS EPISODE: https://www.youtube.com/watch?v=QPFkbE9SXwE…
New post on /r/flutterdev subreddit:
5 Things John Learned Fighting Hackers of His App — A must-read for PM’s and CISO’s
https://ift.tt/3DIzXnH
December 09, 2021 at 02:44PM by SirionRazzer
https://ift.tt/3oCUF48
5 Things John Learned Fighting Hackers of His App — A must-read for PM’s and CISO’s
https://ift.tt/3DIzXnH
December 09, 2021 at 02:44PM by SirionRazzer
https://ift.tt/3oCUF48
Medium
5 Things John Learned Fighting Hackers of His App — A must-read for PM’s and CISO’s
BetterVision is a popular app for the blind and visually impaired. John’s app suffered a cloning attack, and his In-App purchases got…
New post on /r/flutterdev subreddit:
Petition to separate the flutter/plugins repository into individual projects
I find the https://github.com/flutter/plugins repository to be hard to parse these days. It contains 19 different packages and 86 PRs as I write this, which makes it really difficult to follow what is happening inside it.I'm also confused by the lack of issues tab, which causes people to submit them in the main flutter repo.Is there a reason for this? I suspect it started as a place to house a couple of small plugins and grew from there - accidental complexity as it tends to happen a lot in software development :-)In any case I'd like to propose splitting this repository into multiple smaller projects to allow for better visibility into the state of the project, as well as create new ways for developers to interact by enabling the issues and discussions tabs.
December 09, 2021 at 04:11PM by DrFossil
https://ift.tt/3dC6QrO
Petition to separate the flutter/plugins repository into individual projects
I find the https://github.com/flutter/plugins repository to be hard to parse these days. It contains 19 different packages and 86 PRs as I write this, which makes it really difficult to follow what is happening inside it.I'm also confused by the lack of issues tab, which causes people to submit them in the main flutter repo.Is there a reason for this? I suspect it started as a place to house a couple of small plugins and grew from there - accidental complexity as it tends to happen a lot in software development :-)In any case I'd like to propose splitting this repository into multiple smaller projects to allow for better visibility into the state of the project, as well as create new ways for developers to interact by enabling the issues and discussions tabs.
December 09, 2021 at 04:11PM by DrFossil
https://ift.tt/3dC6QrO
GitHub
GitHub - flutter/plugins: Plugins for Flutter maintained by the Flutter team
Plugins for Flutter maintained by the Flutter team - flutter/plugins
New tweet from FlutterDev:
💙 A look back at a Flutter-filled year Yesterday, we shipped Flutter 2.8 and Dart 2.15. Learn how Flutter has grown, plus see what's coming in 2022: ⚡️ Improved performance 🔥 Big updates for @Firebase on Flutter 🛠 Dev tools and packages Read 👉 https://t.co/qdwP74zT2r https://t.co/lsrKFJyzZs— Flutter (@FlutterDev) Dec 9, 2021
December 09, 2021 at 05:00PM
https://twitter.com/FlutterDev/status/1468973720660111366
💙 A look back at a Flutter-filled year Yesterday, we shipped Flutter 2.8 and Dart 2.15. Learn how Flutter has grown, plus see what's coming in 2022: ⚡️ Improved performance 🔥 Big updates for @Firebase on Flutter 🛠 Dev tools and packages Read 👉 https://t.co/qdwP74zT2r https://t.co/lsrKFJyzZs— Flutter (@FlutterDev) Dec 9, 2021
December 09, 2021 at 05:00PM
https://twitter.com/FlutterDev/status/1468973720660111366
Medium
Announcing Flutter 2.8
A new release of Flutter: and a look back on a year of growth
New post on /r/flutterdev subreddit:
5 Flutter icons package as a daily driver
https://link.medium.com/HcwrTUGRQlb
December 09, 2021 at 05:49PM by RaghavTheGreat1
https://ift.tt/31AttKZ
5 Flutter icons package as a daily driver
https://link.medium.com/HcwrTUGRQlb
December 09, 2021 at 05:49PM by RaghavTheGreat1
https://ift.tt/31AttKZ
Medium
5 Flutter icons package as a daily driver
So you’re building apps in Flutter and find the default Material Icons too ugly for your project? No worries, pub.dev has got you covered!
New post on /r/flutterdev subreddit:
Flutter Flame Game Class Explained Quickly
https://youtu.be/yu7sELSz6Xw
December 09, 2021 at 06:28PM by sonicworkflow
https://ift.tt/31JpQlp
Flutter Flame Game Class Explained Quickly
https://youtu.be/yu7sELSz6Xw
December 09, 2021 at 06:28PM by sonicworkflow
https://ift.tt/31JpQlp
New post on /r/flutterdev subreddit:
5 Flutter icons package as a daily driver
https://ift.tt/3DzBP2l
December 09, 2021 at 07:26PM by RaghavTheGreat1
https://ift.tt/31PrLEX
5 Flutter icons package as a daily driver
https://ift.tt/3DzBP2l
December 09, 2021 at 07:26PM by RaghavTheGreat1
https://ift.tt/31PrLEX
Medium
5 Flutter icons package as a daily driver
So you’re building apps in Flutter and find the default Material Icons too ugly for your project? No worries, pub.dev has got you covered!
New post on /r/flutterdev subreddit:
It has been 16 months since I developed Flutter DataGrid.
https://github.com/bosskmk/pluto_gridIt has been 16 months since I developed Flutter DataGrid.Currently, many functions have been added, and recently, columnGroups that can group columns to a desired depth has been added.In Flutter, there was no DataGrid, so I started making it.There is still much to be improved.Not long ago, Flutter version 2.8.0 was released.It's an honor to contribute even a little to the ever-evolving Flutter.
December 10, 2021 at 07:59AM by weblaze_bosskmk
https://ift.tt/3EIaFrn
It has been 16 months since I developed Flutter DataGrid.
https://github.com/bosskmk/pluto_gridIt has been 16 months since I developed Flutter DataGrid.Currently, many functions have been added, and recently, columnGroups that can group columns to a desired depth has been added.In Flutter, there was no DataGrid, so I started making it.There is still much to be improved.Not long ago, Flutter version 2.8.0 was released.It's an honor to contribute even a little to the ever-evolving Flutter.
December 10, 2021 at 07:59AM by weblaze_bosskmk
https://ift.tt/3EIaFrn
GitHub
GitHub - bosskmk/pluto_grid: PlutoGrid is a dataGrid for flutter that can be controlled by the keyboard on desktop and web. Of…
PlutoGrid is a dataGrid for flutter that can be controlled by the keyboard on desktop and web. Of course, it works well on Android and IOS. - bosskmk/pluto_grid
New post on /r/flutterdev subreddit:
Flutter Expandable and Collapsible Text Widget | Dynamically Change Widg...
https://youtube.com/watch?v=Fo6HDb26BIU&feature=share
December 10, 2021 at 08:54AM by DBestech
https://ift.tt/3yfvHva
Flutter Expandable and Collapsible Text Widget | Dynamically Change Widg...
https://youtube.com/watch?v=Fo6HDb26BIU&feature=share
December 10, 2021 at 08:54AM by DBestech
https://ift.tt/3yfvHva
YouTube
Flutter Expandable and Collapsible Text Widget | Dynamically Change Widget Size | Advanced
We will learn how to make an expandable and collapsable text widget in flutter.
flutter dynamic text widget, flutter collapse widget, flutter expand widget,
Flutter food delivery app
https://www.dbestech.com/tutorials/flutter-food-delivery-app-e-commerce…
flutter dynamic text widget, flutter collapse widget, flutter expand widget,
Flutter food delivery app
https://www.dbestech.com/tutorials/flutter-food-delivery-app-e-commerce…
New post on /r/flutterdev subreddit:
Announcing Flutter 2.8
https://ift.tt/3rN8HCd
December 10, 2021 at 10:46AM by Jitendra_97
https://ift.tt/3lSakLs
Announcing Flutter 2.8
https://ift.tt/3rN8HCd
December 10, 2021 at 10:46AM by Jitendra_97
https://ift.tt/3lSakLs
Medium
Announcing Flutter 2.8
A new release of Flutter: and a look back on a year of growth
New post on /r/flutterdev subreddit:
flutter 2.8.0 needs macOs Monterrey for iOS builds
Severe Face Palm Moment in Progress: when you upgrade flutter and then your iOS/Xcode build needs macOs Monterrey for you to continue working on the project. Some of us just never update our macOs I guess.
December 10, 2021 at 12:49PM by aolsan_
https://ift.tt/3EIQRUT
flutter 2.8.0 needs macOs Monterrey for iOS builds
Severe Face Palm Moment in Progress: when you upgrade flutter and then your iOS/Xcode build needs macOs Monterrey for you to continue working on the project. Some of us just never update our macOs I guess.
December 10, 2021 at 12:49PM by aolsan_
https://ift.tt/3EIQRUT
reddit
flutter 2.8.0 needs macOs Monterrey for iOS builds
**Severe Face Palm Moment in Progress**: when you upgrade flutter and then your iOS/Xcode build needs macOs Monterrey for you to continue working...
New post on /r/flutterdev subreddit:
A plugin to use ContentProvider/ContentResolver on Android
https://ift.tt/3dH368t
December 10, 2021 at 01:49PM by nt4f04uNd
https://ift.tt/3EVf0Hy
A plugin to use ContentProvider/ContentResolver on Android
https://ift.tt/3dH368t
December 10, 2021 at 01:49PM by nt4f04uNd
https://ift.tt/3EVf0Hy
Dart packages
android_content_provider | Flutter Package
Flutter plugin to use ContentProvider/ContentResolver APIs on Android
New post on /r/flutterdev subreddit:
App Feedback Thread - December 10, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
December 10, 2021 at 03:00PM by AutoModerator
https://ift.tt/3yg2Gz6
App Feedback Thread - December 10, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
December 10, 2021 at 03:00PM by AutoModerator
https://ift.tt/3yg2Gz6