New post on /r/flutterdev subreddit:
Anyone developing with Flutter using a Linux or Windows ARM environment?
I know that Flutter development works fine on M1 Macs, but curious how (and if) it works on ARM Linux distros or even Windows for ARM. I've seen some discussion saying it should work, but haven't actually heard reports.
October 12, 2021 at 03:54AM by mattmaddux
https://ift.tt/2YMQlp1
Anyone developing with Flutter using a Linux or Windows ARM environment?
I know that Flutter development works fine on M1 Macs, but curious how (and if) it works on ARM Linux distros or even Windows for ARM. I've seen some discussion saying it should work, but haven't actually heard reports.
October 12, 2021 at 03:54AM by mattmaddux
https://ift.tt/2YMQlp1
New post on /r/flutterdev subreddit:
Design patterns in flutter
I’m relatively new with flutter development. Coming from native android development background, are there any tutorials or example for the use of design patterns in flutter development (like MVC, MVP or MVVM)?
October 12, 2021 at 06:08AM by itsonlykareem
https://ift.tt/3ayBUqE
Design patterns in flutter
I’m relatively new with flutter development. Coming from native android development background, are there any tutorials or example for the use of design patterns in flutter development (like MVC, MVP or MVVM)?
October 12, 2021 at 06:08AM by itsonlykareem
https://ift.tt/3ayBUqE
Reddit
r/FlutterDev on Reddit: Design patterns in flutter
Posted by u/itsonlykareem - 5 votes and 6 comments
New post on /r/flutterdev subreddit:
Understanding and Animating Stuff using HeroWidget
https://ift.tt/3AZvsVG
October 12, 2021 at 07:01AM by maria_garcia20
https://ift.tt/3DBYHi5
Understanding and Animating Stuff using HeroWidget
https://ift.tt/3AZvsVG
October 12, 2021 at 07:01AM by maria_garcia20
https://ift.tt/3DBYHi5
Medium
Understanding and Animating Stuff using HeroWidget
Learn basics to advanced stuff of HeroWidget
New post on /r/flutterdev subreddit:
How to Build Secure App using freeRASP | freeRASP Implementation Guide
https://www.youtube.com/watch?v=LLFOSX1c5WAWe shot a security primer + tutorial about Flutter security library freeRASP. Check it out! Would you use freeRASP in your next project? Would you like to know more about threats to Flutter apps? We are looking for inspiration for another video, your opinion matters!If you are interested, follow our activities at https://github.com/talsec/Free-RASP-Community
October 12, 2021 at 01:05PM by SirionRazzer
https://ift.tt/3BO7dtX
How to Build Secure App using freeRASP | freeRASP Implementation Guide
https://www.youtube.com/watch?v=LLFOSX1c5WAWe shot a security primer + tutorial about Flutter security library freeRASP. Check it out! Would you use freeRASP in your next project? Would you like to know more about threats to Flutter apps? We are looking for inspiration for another video, your opinion matters!If you are interested, follow our activities at https://github.com/talsec/Free-RASP-Community
October 12, 2021 at 01:05PM by SirionRazzer
https://ift.tt/3BO7dtX
YouTube
#1 Flutter Security Library - How to Build Secure App using freeRASP | freeRASP Implementation Guide
freeRASP is a Community-driven In-App Protection and User Safety suite. Learn more about security and implement freeRASP into your app! Check the implementation guide at the end of the video.
Chapters:
0:00 Intro
0:29 Why you need freeRASP?
2:48 OWASP Top…
Chapters:
0:00 Intro
0:29 Why you need freeRASP?
2:48 OWASP Top…
New post on /r/flutterdev subreddit:
Google says it’s dropping Material Design components on iOS in favor of Apple’s UIKit
https://ift.tt/3iVULkd
October 12, 2021 at 12:46PM by fluthien
https://ift.tt/3iTXxpY
Google says it’s dropping Material Design components on iOS in favor of Apple’s UIKit
https://ift.tt/3iVULkd
October 12, 2021 at 12:46PM by fluthien
https://ift.tt/3iTXxpY
The Verge
Google says it’s dropping Material Design components on iOS in favor of Apple’s UIKit
Google’s iOS apps could feel more like they belong on iOS
New post on /r/flutterdev subreddit:
Flutter Missing Theme Best Practices, Color Schemes
https://ift.tt/3FE3UYt
October 12, 2021 at 01:59PM by fredgrott
https://ift.tt/3oVi3e2
Flutter Missing Theme Best Practices, Color Schemes
https://ift.tt/3FE3UYt
October 12, 2021 at 01:59PM by fredgrott
https://ift.tt/3oVi3e2
Medium
Flutter Missing Theme Best Practices, Color Schemes
If you follow what little there is about Cross Platform Theme-ing with Flutter and implement MaterialBasedCupertinoThemeData the way it’s…
New post on /r/flutterdev subreddit:
Why do we need to override the constructor on StatelessWidgets?
I’m new to Flutter and am going through the tutorials and have a few questions:1) Why do the tutorial examples have classes that extend StatelessWidgets but also define a constructor that doesn’t nothing except call the super constructor and pass on the arguments? If not overriding the constructor did the same thing anyways couldn’t they just not override it?2) What is the relationship between normal widgets and Material/Cupertino widgets? Are normal widgets just a barebones look while Material and Cupertino are specific to Android/iPhone? If Flutter is by Google and Material is also by Google then why have normal widgets in the first place when it would make more sense to merge normal widgets and Material widgets?3) The tutorial says that defining the UI with widget constructors is fast. Does this scale to a few thousand objects widgets or will it get slow?4) If updating the UI means all constructors of the widgets get called again, how does the UI handle saving the scroll position or cursor positions unless it uses a virtual DOM like React and only update the changed nodes?5) is it possible to create a UI using the normal widgets (without using Material or Cupertino) and still have the app automatically adjust to screen insets and paddings such as the camera cut outs and the gesture zone?6) Do functions when passed around maintain the original value of “this”? I mean this relative to Javascript which loses “this” unless it is called in the form of object.function.
October 12, 2021 at 06:13PM by lorenzomofo
https://ift.tt/3mQFIJX
Why do we need to override the constructor on StatelessWidgets?
I’m new to Flutter and am going through the tutorials and have a few questions:1) Why do the tutorial examples have classes that extend StatelessWidgets but also define a constructor that doesn’t nothing except call the super constructor and pass on the arguments? If not overriding the constructor did the same thing anyways couldn’t they just not override it?2) What is the relationship between normal widgets and Material/Cupertino widgets? Are normal widgets just a barebones look while Material and Cupertino are specific to Android/iPhone? If Flutter is by Google and Material is also by Google then why have normal widgets in the first place when it would make more sense to merge normal widgets and Material widgets?3) The tutorial says that defining the UI with widget constructors is fast. Does this scale to a few thousand objects widgets or will it get slow?4) If updating the UI means all constructors of the widgets get called again, how does the UI handle saving the scroll position or cursor positions unless it uses a virtual DOM like React and only update the changed nodes?5) is it possible to create a UI using the normal widgets (without using Material or Cupertino) and still have the app automatically adjust to screen insets and paddings such as the camera cut outs and the gesture zone?6) Do functions when passed around maintain the original value of “this”? I mean this relative to Javascript which loses “this” unless it is called in the form of object.function.
October 12, 2021 at 06:13PM by lorenzomofo
https://ift.tt/3mQFIJX
reddit
Why do we need to override the constructor on StatelessWidgets?
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Ask me anything (AMA) - Questions and Answers - Just Chatting
https://youtube.com/watch?v=Hc1Y_z_Xdp0&feature=share
October 12, 2021 at 06:10PM by Pixelreddit
https://ift.tt/3oUD88d
Ask me anything (AMA) - Questions and Answers - Just Chatting
https://youtube.com/watch?v=Hc1Y_z_Xdp0&feature=share
October 12, 2021 at 06:10PM by Pixelreddit
https://ift.tt/3oUD88d
YouTube
Ask me anything (AMA) - Questions and Answers - Just Chatting
I would like to take the time and explain some things around Flutter and also Flutter Explained. If you are interested feel free to join!
Join this channel to get access to perks:
https://www.youtube.com/channel/UCgUnLn1FpuHHmO66vn4o1NA/join
** New Mentorship…
Join this channel to get access to perks:
https://www.youtube.com/channel/UCgUnLn1FpuHHmO66vn4o1NA/join
** New Mentorship…
New tweet from FlutterDev:
@github 💙— Flutter (@FlutterDev) Oct 12, 2021
October 12, 2021 at 06:28PM
https://twitter.com/FlutterDev/status/1447962277215232000
@github 💙— Flutter (@FlutterDev) Oct 12, 2021
October 12, 2021 at 06:28PM
https://twitter.com/FlutterDev/status/1447962277215232000
Twitter
Flutter
@github 💙
New post on /r/flutterdev subreddit:
Widgetbook with Lucas Josefiak on the Flutter 101 podcast
Listen to the episode here 🎧 https://flutter101.dev/episodes/widgetbook-with-lucas-josefiakToday, I wanted to share with you a very interesting open-source project, Widgetbook. My guest is Lucas Josefiak and he is the co-founder of Widgetbook. Widgetbook is "an open-source tool for organizing widgets in Flutter. It helps developers cataloging their widgets, testing them quickly on multiple devices and themes, and sharing them easily with designers and clients".It’s a problem that I probably faced at every team and project I worked on, and on some teams, we even tried to implement some sort of secondary application just to showcase, document, and test our reusable components and pages, so I was very glad that Lucas decided to join me for an episode.Widgetbook is inspired by flutterbook, and Storybook, maybe that sounds familiar to some of you.You can find all episodes and links on flutter101.dev. Listen and subscribe to the Flutter 101 podcast on Apple Podcasts, Google Podcasts, Spotify, Amazon Music, Overcast, Pocketcast, Stitcher, TuneIn, iHeartRadio, or via RSS.For updates about future episodes and Flutter news, follow me on Twitter @vincevargadev.
October 12, 2021 at 07:13PM by serial_dev
https://ift.tt/3DqVBxg
Widgetbook with Lucas Josefiak on the Flutter 101 podcast
Listen to the episode here 🎧 https://flutter101.dev/episodes/widgetbook-with-lucas-josefiakToday, I wanted to share with you a very interesting open-source project, Widgetbook. My guest is Lucas Josefiak and he is the co-founder of Widgetbook. Widgetbook is "an open-source tool for organizing widgets in Flutter. It helps developers cataloging their widgets, testing them quickly on multiple devices and themes, and sharing them easily with designers and clients".It’s a problem that I probably faced at every team and project I worked on, and on some teams, we even tried to implement some sort of secondary application just to showcase, document, and test our reusable components and pages, so I was very glad that Lucas decided to join me for an episode.Widgetbook is inspired by flutterbook, and Storybook, maybe that sounds familiar to some of you.You can find all episodes and links on flutter101.dev. Listen and subscribe to the Flutter 101 podcast on Apple Podcasts, Google Podcasts, Spotify, Amazon Music, Overcast, Pocketcast, Stitcher, TuneIn, iHeartRadio, or via RSS.For updates about future episodes and Flutter news, follow me on Twitter @vincevargadev.
October 12, 2021 at 07:13PM by serial_dev
https://ift.tt/3DqVBxg
Flutter 101 Podcast
Lucas Josefiak is the co-founder of Widgetbook. Widgetbook is an open-source tool for organizing widgets in Flutter. It helps developers cataloging their widgets, testing them quickly on multiple devices and themes, and sharing them easily with designers…
New post on /r/flutterdev subreddit:
AsyncValueWidget: a reusable Flutter widget to work with AsyncValue (using Riverpod)
https://ift.tt/3DtWCEG
October 12, 2021 at 06:35PM by bizz84
https://ift.tt/2YFzhRw
AsyncValueWidget: a reusable Flutter widget to work with AsyncValue (using Riverpod)
https://ift.tt/3DtWCEG
October 12, 2021 at 06:35PM by bizz84
https://ift.tt/2YFzhRw
Code With Andrea
AsyncValueWidget: a reusable Flutter widget to work with AsyncValue (using Riverpod)
How to create a reusable widget class that helps us when working with asynchronous data from Riverpod providers.
New post on /r/flutterdev subreddit:
Desktop performance deep dive: Flutter vs Electron
https://ift.tt/3iVKZyE
October 12, 2021 at 11:15PM by nparsons08
https://ift.tt/3BDI8Bx
Desktop performance deep dive: Flutter vs Electron
https://ift.tt/3iVKZyE
October 12, 2021 at 11:15PM by nparsons08
https://ift.tt/3BDI8Bx
getstream.io
macOS Performance Comparison: Flutter Desktop vs. Electron
Learn about the performance differences between Flutter and JavaScript when developing desktop apps and which platform is right for you.
New post on /r/flutterdev subreddit:
App development learning
I want to learn how to build and bring my app idea to fruition. Based on your professional experience is Flutter and Dart the right choice? I love the idea of cross platform but not sure if it’s advisable or if I should just start with iso. I’m a beginner and am thinking of learning through online courses on udemy. Thanks in advance for your help !
October 13, 2021 at 01:38AM by studioroses
https://ift.tt/3oTrR8c
App development learning
I want to learn how to build and bring my app idea to fruition. Based on your professional experience is Flutter and Dart the right choice? I love the idea of cross platform but not sure if it’s advisable or if I should just start with iso. I’m a beginner and am thinking of learning through online courses on udemy. Thanks in advance for your help !
October 13, 2021 at 01:38AM by studioroses
https://ift.tt/3oTrR8c
reddit
App development learning
I want to learn how to build and bring my app idea to fruition. Based on your professional experience is Flutter and Dart the right choice? I...
New post on /r/flutterdev subreddit:
Add mediation
Hello folks, anyone had use google mobile ads plugin with mediation? I little bit confused.
October 13, 2021 at 02:24AM by ChuiiZeet
https://ift.tt/3iWFoI9
Add mediation
Hello folks, anyone had use google mobile ads plugin with mediation? I little bit confused.
October 13, 2021 at 02:24AM by ChuiiZeet
https://ift.tt/3iWFoI9
Dart packages
google_mobile_ads | Flutter package
Flutter plugin for Google Mobile Ads, supporting banner, interstitial (full-screen), rewarded and native ads
New post on /r/flutterdev subreddit:
Auth without Firebase
Wondering what everyone is doing for authentication when not using firebase?I'd really like to get easy social logins working, but don't want to include the firebase SDK if I can help it, as it limits desktop testing and really slows down (and complicates) the builds on ios.It looks like
October 13, 2021 at 02:19AM by esDotDev
https://ift.tt/3lCpjZS
Auth without Firebase
Wondering what everyone is doing for authentication when not using firebase?I'd really like to get easy social logins working, but don't want to include the firebase SDK if I can help it, as it limits desktop testing and really slows down (and complicates) the builds on ios.It looks like
AppWrite
might be an option, or Amazon Cognito
, is there any others that people are using?October 13, 2021 at 02:19AM by esDotDev
https://ift.tt/3lCpjZS
reddit
Auth without Firebase
Wondering what everyone is doing for authentication when not using firebase? I'd really like to get easy social logins working, but don't want to...
New post on /r/flutterdev subreddit:
Basics of AnimatedBuilder in Flutter
https://www.youtube.com/watch?v=dvbXa-lNfrY
October 13, 2021 at 06:19AM by Dhanraj_Flutterdev
https://ift.tt/3FGBPQf
Basics of AnimatedBuilder in Flutter
https://www.youtube.com/watch?v=dvbXa-lNfrY
October 13, 2021 at 06:19AM by Dhanraj_Flutterdev
https://ift.tt/3FGBPQf
YouTube
Animated Builder in Depth | Flutter Tutorial | Flutter Animations
Hey guys in this video we will learn how you can use animated builder in animate any widget in flutter. watch the full video and LIKE the video if you found it helpful.
#flutter #flutterdev
Please subscribe to my channel to motivate me.
Channel Link: h…
#flutter #flutterdev
Please subscribe to my channel to motivate me.
Channel Link: h…
New post on /r/flutterdev subreddit:
Introducing Widgetbook - The Storybook for Flutter
https://ift.tt/2UMHzoS
October 13, 2021 at 10:53AM by jenshor
https://ift.tt/3mQoJaA
Introducing Widgetbook - The Storybook for Flutter
https://ift.tt/2UMHzoS
October 13, 2021 at 10:53AM by jenshor
https://ift.tt/3mQoJaA
Dart packages
widgetbook | Flutter Package
A flutter storybook that helps professionals and teams to catalogue their widgets.
New post on /r/flutterdev subreddit:
ObjectBox Tutorial - Flutter Local Database with Sync implementation
https://youtube.com/watch?v=r9Lc2r22KBk&feature=share
October 13, 2021 at 11:33AM by -Charm-Quark-
https://ift.tt/3iXH5VL
ObjectBox Tutorial - Flutter Local Database with Sync implementation
https://youtube.com/watch?v=r9Lc2r22KBk&feature=share
October 13, 2021 at 11:33AM by -Charm-Quark-
https://ift.tt/3iXH5VL
YouTube
ObjectBox Tutorial - Flutter Local Database with Sync implementation
Thanks to the ObjectBox Team to make this video possible. If you are interested check out the following links to get started!
Getting Started Guide: https://objectbox.io/dev-get-started/
Package Link: https://pub.dev/packages/objectbox
Other helpful resources:…
Getting Started Guide: https://objectbox.io/dev-get-started/
Package Link: https://pub.dev/packages/objectbox
Other helpful resources:…
New post on /r/flutterdev subreddit:
Hey FlutterDevs 👋 Join us for our Flutter Day this Hacktoberfest as we get started with cross-platform app development for mobile and desktop using Dart and Flutter with some amazing speakers from Appwrite, Stream, Telia, and Very Good Ventures 💝 📅 October 13, 2021 9:00 PT
https://ift.tt/3iWEziS
October 13, 2021 at 11:33AM by lohanidamodar
https://ift.tt/3oYGx6a
Hey FlutterDevs 👋 Join us for our Flutter Day this Hacktoberfest as we get started with cross-platform app development for mobile and desktop using Dart and Flutter with some amazing speakers from Appwrite, Stream, Telia, and Very Good Ventures 💝 📅 October 13, 2021 9:00 PT
https://ift.tt/3iWEziS
October 13, 2021 at 11:33AM by lohanidamodar
https://ift.tt/3oYGx6a
Linkedin
Hacktoberfest: Flutter Day | LinkedIn
Join us for our Flutter Day, where we will help you folks get started with cross-platform app development for mobile and desktop using Dart and Flutter with some amazing speakers from Appwrite, Stream, Telia, and Very Good Ventures 💝
Know Your Speakers:…
Know Your Speakers:…
New post on /r/flutterdev subreddit:
MVVM in Flutter using Providers
https://ift.tt/3AO1bIt
October 13, 2021 at 12:58PM by Happycodeine
https://ift.tt/2YGPQfJ
MVVM in Flutter using Providers
https://ift.tt/3AO1bIt
October 13, 2021 at 12:58PM by Happycodeine
https://ift.tt/2YGPQfJ
Medium
MVVM in Flutter using Providers
MVVM is the hot topic anytime in architecting an application.
New post on /r/flutterdev subreddit:
Flutter as a multiplatform solution
Hi, everyone!I'm currently looking for technology that may help me to deliver different clients (one or several (ios + android + desktop) + necessarily web) and so far Flutter looks like an option.
But there is a problem: I didn't manage to find any case where Flutter would be used for several clients including Web (mobile only - yes, but not with web)Knowing that there is a production-ready solution for such a case would help me to convince owner to use Flutter in production. Do you know such cases? Or may be you know some other examples of multiplatform solution in production that would run not only on mobile/desktop but in Web as well ?Thank's everyone in advance
October 13, 2021 at 12:39PM by UncleFrankInDaHouse
https://ift.tt/3BEOMaL
Flutter as a multiplatform solution
Hi, everyone!I'm currently looking for technology that may help me to deliver different clients (one or several (ios + android + desktop) + necessarily web) and so far Flutter looks like an option.
But there is a problem: I didn't manage to find any case where Flutter would be used for several clients including Web (mobile only - yes, but not with web)Knowing that there is a production-ready solution for such a case would help me to convince owner to use Flutter in production. Do you know such cases? Or may be you know some other examples of multiplatform solution in production that would run not only on mobile/desktop but in Web as well ?Thank's everyone in advance
October 13, 2021 at 12:39PM by UncleFrankInDaHouse
https://ift.tt/3BEOMaL