New post on /r/flutterdev subreddit:
Clean Architecture with Riverpod
Hi, I'm planning to follow clean architecture with riverpod and riverpod provides everything necessary, StreamProvider for Flow, StateProvider for StateFlow (I've done clean architecture in android), but just couldn't figure out certain parts, * Is it okay to use Provider as a way to DI? * Can a class, to be passed as a provider, contain a StateProvider member variable? Or should just pass the whole class as a StateProvider and use .select on member?I'm just trying to figure out an idea before the project starts, searched about this but couldn't resolve these particular doubts.Also please feel free to share anything to watch out, or best practices on using riverpod for clean architecture if you've done this before..
November 17, 2021 at 02:29PM by GokulDAS027
https://ift.tt/3kJKTuR
Clean Architecture with Riverpod
Hi, I'm planning to follow clean architecture with riverpod and riverpod provides everything necessary, StreamProvider for Flow, StateProvider for StateFlow (I've done clean architecture in android), but just couldn't figure out certain parts, * Is it okay to use Provider as a way to DI? * Can a class, to be passed as a provider, contain a StateProvider member variable? Or should just pass the whole class as a StateProvider and use .select on member?I'm just trying to figure out an idea before the project starts, searched about this but couldn't resolve these particular doubts.Also please feel free to share anything to watch out, or best practices on using riverpod for clean architecture if you've done this before..
November 17, 2021 at 02:29PM by GokulDAS027
https://ift.tt/3kJKTuR
reddit
Clean Architecture with Riverpod
Hi, I'm planning to follow clean architecture with riverpod and riverpod provides everything necessary, StreamProvider for Flow, StateProvider for...
New post on /r/flutterdev subreddit:
Networking & Serialization :: 17th Nov 2021 :: Flutter Apprentice Book Club
https://youtube.com/watch?v=vDOsMxTbfoI&feature=share
November 17, 2021 at 06:05PM by Pixelreddit
https://ift.tt/3DqSFRN
Networking & Serialization :: 17th Nov 2021 :: Flutter Apprentice Book Club
https://youtube.com/watch?v=vDOsMxTbfoI&feature=share
November 17, 2021 at 06:05PM by Pixelreddit
https://ift.tt/3DqSFRN
YouTube
Networking & Serialization :: 17th Nov 2021 :: Flutter Apprentice Book Club
Chapters 10 & 11
Get the book https://flutter.dev/apprentice-giveaway
Community
https://www.meetup.com/pro/flutter
https://fluttercommunity.dev/joinslack
https://discord.com/invite/N7Yshp4
https://www.reddit.com/r/FlutterDev/
https://stackoverflow.com/tags/flutter…
Get the book https://flutter.dev/apprentice-giveaway
Community
https://www.meetup.com/pro/flutter
https://fluttercommunity.dev/joinslack
https://discord.com/invite/N7Yshp4
https://www.reddit.com/r/FlutterDev/
https://stackoverflow.com/tags/flutter…
New post on /r/flutterdev subreddit:
Adaptive Chameleon Theme Plugin
My first ever flutter plugin. This adds support for managing theme modes (light, dark, system) and switching theme colours. It also comes with some handy out-of-the-box widgets to make implementation easier.https://pub.dev/packages/adaptive_chameleon_theme
November 17, 2021 at 05:40PM by KevinOmyonga
https://ift.tt/324Vj1z
Adaptive Chameleon Theme Plugin
My first ever flutter plugin. This adds support for managing theme modes (light, dark, system) and switching theme colours. It also comes with some handy out-of-the-box widgets to make implementation easier.https://pub.dev/packages/adaptive_chameleon_theme
November 17, 2021 at 05:40PM by KevinOmyonga
https://ift.tt/324Vj1z
Dart packages
adaptive_chameleon_theme | Flutter Package
Adds support for managing theme modes (light, dark, system) and switching theme colors.
New tweet from FlutterDev:
RT @GooglePlayDev: 📢 Starting soon! 📢 Join us at 10 AM PT to hear the latest Google Play policy updates and December’s compliance requirements. The team will also provide insights into the new Families policies and have Q&A for policy-related questions. Register → https://t.co/Bn0xn0cqWr https://t.co/FtnwdALS92— Flutter (@FlutterDev) Nov 17, 2021
November 17, 2021 at 06:30PM
https://twitter.com/FlutterDev/status/1461023832949538825
RT @GooglePlayDev: 📢 Starting soon! 📢 Join us at 10 AM PT to hear the latest Google Play policy updates and December’s compliance requirements. The team will also provide insights into the new Families policies and have Q&A for policy-related questions. Register → https://t.co/Bn0xn0cqWr https://t.co/FtnwdALS92— Flutter (@FlutterDev) Nov 17, 2021
November 17, 2021 at 06:30PM
https://twitter.com/FlutterDev/status/1461023832949538825
Withgoogle
Google Play Policy Updates Webinar (Global)
Here at Google Play, we’re committed to providing a safe and trusted experience for users and developers. Our policies are designed to guide you, ensuring that your apps and mobile games are safely enjoyed by billions of people worldwide.
New post on /r/flutterdev subreddit:
Question about state management in flutter on an concrete example
Hello all,at the moment I am trying to write my first Flutter application. I have a question about state management:I have a screen where I can see details about an entity. This screen has its own state, which is responsible for retrieving the data, etc. A button at the top gives the user the ability to change the name of the entity. When the button is clicked, an AlertDialog with an input field is displayed. Currently, this popup shares its state with the main page.Would you use a separate state to manage the popup? This could have the advantage of allowing you to control things like a loading spinner for the action within this popup separately from the main view.If you use a separate state: How do you share the data with the main page? To be more specific: The entity name is displayed on the main page. If it is changed in the popup, this change should also be displayed on the main page. How would you solve this problem?I would be happy to hear your opinions and suggestions on this.
November 17, 2021 at 07:54PM by eckii24
https://ift.tt/3CoHpE8
Question about state management in flutter on an concrete example
Hello all,at the moment I am trying to write my first Flutter application. I have a question about state management:I have a screen where I can see details about an entity. This screen has its own state, which is responsible for retrieving the data, etc. A button at the top gives the user the ability to change the name of the entity. When the button is clicked, an AlertDialog with an input field is displayed. Currently, this popup shares its state with the main page.Would you use a separate state to manage the popup? This could have the advantage of allowing you to control things like a loading spinner for the action within this popup separately from the main view.If you use a separate state: How do you share the data with the main page? To be more specific: The entity name is displayed on the main page. If it is changed in the popup, this change should also be displayed on the main page. How would you solve this problem?I would be happy to hear your opinions and suggestions on this.
November 17, 2021 at 07:54PM by eckii24
https://ift.tt/3CoHpE8
reddit
Question about state management in flutter on an concrete example
Hello all, at the moment I am trying to write my first Flutter application. I have a question about state management: I have a screen where I...
New tweet from FlutterDev:
🐦✨ In case you missed it, here's the latest from the Flutter Update! Check out what we’ve hatched 🐣 ✔️ GMA SDK for Flutter to General Availability ✔️ Support on iOS & Android ✔️ Mediation (Beta) ✔️ And more! Let's go 👇 https://t.co/hihrX3QYjC— Flutter (@FlutterDev) Nov 17, 2021
November 17, 2021 at 08:30PM
https://twitter.com/FlutterDev/status/1461054029161762824
🐦✨ In case you missed it, here's the latest from the Flutter Update! Check out what we’ve hatched 🐣 ✔️ GMA SDK for Flutter to General Availability ✔️ Support on iOS & Android ✔️ Mediation (Beta) ✔️ And more! Let's go 👇 https://t.co/hihrX3QYjC— Flutter (@FlutterDev) Nov 17, 2021
November 17, 2021 at 08:30PM
https://twitter.com/FlutterDev/status/1461054029161762824
New post on /r/flutterdev subreddit:
How to start development in flutter
I'm working as developer using Symfony framework. I can make usable UIs using bootstrap and html css. I'm Ok with JS. I'm getting bored with web projects and decided to make some into android apps using flutter.From your experience what's the optimal way to start? Maybe some project ideas that rises the bar when doing each one. Any tips on how to get started will be appreciated.
November 17, 2021 at 09:11PM by Latvianization
https://ift.tt/3kKu42O
How to start development in flutter
I'm working as developer using Symfony framework. I can make usable UIs using bootstrap and html css. I'm Ok with JS. I'm getting bored with web projects and decided to make some into android apps using flutter.From your experience what's the optimal way to start? Maybe some project ideas that rises the bar when doing each one. Any tips on how to get started will be appreciated.
November 17, 2021 at 09:11PM by Latvianization
https://ift.tt/3kKu42O
reddit
How to start development in flutter
I'm working as developer using Symfony framework. I can make usable UIs using bootstrap and html css. I'm Ok with JS. I'm getting bored with web...
New post on /r/flutterdev subreddit:
ShrinkWrap vs Slivers | Decoding Flutter
https://youtube.com/watch?v=LUqDNnv_dh0&feature=share
November 17, 2021 at 08:55PM by Pixelreddit
https://ift.tt/3HyC29d
ShrinkWrap vs Slivers | Decoding Flutter
https://youtube.com/watch?v=LUqDNnv_dh0&feature=share
November 17, 2021 at 08:55PM by Pixelreddit
https://ift.tt/3HyC29d
YouTube
ShrinkWrap vs Slivers | Decoding Flutter
Learn about nested lists in Flutter, how the shrinkWrap parameter works, and why sometimes Slivers are the best tool for the job.
See the differences in action on DartPad → https://goo.gle/3oCRRTt
Get started with Flutter → http://goo.gle/Flutter
Learn…
See the differences in action on DartPad → https://goo.gle/3oCRRTt
Get started with Flutter → http://goo.gle/Flutter
Learn…
New tweet from FlutterDev:
🤔 ListView… 🤔 @craig_labenz walks us through how to restore peace to Scrollingland with Slivers on #DecodingFlutter 📜🐦 Watch this episode 👉 https://t.co/EbSUIl1RtH https://t.co/ULCyD2EqKP— Flutter (@FlutterDev) Nov 17, 2021
November 17, 2021 at 11:00PM
https://twitter.com/FlutterDev/status/1461091827285639174
🤔 ListView… 🤔 @craig_labenz walks us through how to restore peace to Scrollingland with Slivers on #DecodingFlutter 📜🐦 Watch this episode 👉 https://t.co/EbSUIl1RtH https://t.co/ULCyD2EqKP— Flutter (@FlutterDev) Nov 17, 2021
November 17, 2021 at 11:00PM
https://twitter.com/FlutterDev/status/1461091827285639174
YouTube
ShrinkWrap vs Slivers | Decoding Flutter
Learn about nested lists in Flutter, how the shrinkWrap parameter works, and why sometimes Slivers are the best tool for the job.
See the differences in action on DartPad → https://goo.gle/3oCRRTt
Get started with Flutter → http://goo.gle/Flutter
Learn…
See the differences in action on DartPad → https://goo.gle/3oCRRTt
Get started with Flutter → http://goo.gle/Flutter
Learn…
New post on /r/flutterdev subreddit:
Is setState() a step back?
Hello guys, I'm new to flutter (and here), and I'm following a udemy course. For background, I'm a front and back dev, currently in a front position using react. as for mobile dev, I do have experience with java, react native and ionic.So I love flutter so far, the widget approach is an interesting fresh take. However, seeing setState is troubling. As it was a common thing in react, and it brought lots of bugs (due to it being async, mostly), I don't understand why a new framework would use something similar.As stated, I'm really in the process of learning, and I'm sure the much-more-experts-than-me engeniers at flutter know better. So I was wondering if you guys know why they picked this approach, and what's your opinion about it? Is it working as it should?Also, any good tip/pattern/resource regarding my learning of flutter and dart are most welcome.Thank you :)
November 18, 2021 at 02:08AM by Yogso92
https://ift.tt/3oxnON2
Is setState() a step back?
Hello guys, I'm new to flutter (and here), and I'm following a udemy course. For background, I'm a front and back dev, currently in a front position using react. as for mobile dev, I do have experience with java, react native and ionic.So I love flutter so far, the widget approach is an interesting fresh take. However, seeing setState is troubling. As it was a common thing in react, and it brought lots of bugs (due to it being async, mostly), I don't understand why a new framework would use something similar.As stated, I'm really in the process of learning, and I'm sure the much-more-experts-than-me engeniers at flutter know better. So I was wondering if you guys know why they picked this approach, and what's your opinion about it? Is it working as it should?Also, any good tip/pattern/resource regarding my learning of flutter and dart are most welcome.Thank you :)
November 18, 2021 at 02:08AM by Yogso92
https://ift.tt/3oxnON2
reddit
Is setState() a step back?
Hello guys, I'm new to flutter (and here), and I'm following a udemy course. For background, I'm a front and back dev, currently in a front...
New post on /r/flutterdev subreddit:
Understanding how fluxbuilder work!
HiMy employer purchased a code from https://fluxbuilder.com/That allows him to modify the UI through their app without the need for re-publishing to play store nor Apple storeNow he needs to add some new widget to the UI, these widgets may need to be remotely configuredI understand i need to configure and/or modify the server to deliver these featuresThe questions are:what technologies are used for such system?how can we add custom configurations to the flutter app?Any help would be appreciated
November 18, 2021 at 09:17AM by nexttron96
https://ift.tt/30DdsTK
Understanding how fluxbuilder work!
HiMy employer purchased a code from https://fluxbuilder.com/That allows him to modify the UI through their app without the need for re-publishing to play store nor Apple storeNow he needs to add some new widget to the UI, these widgets may need to be remotely configuredI understand i need to configure and/or modify the server to deliver these featuresThe questions are:what technologies are used for such system?how can we add custom configurations to the flutter app?Any help would be appreciated
November 18, 2021 at 09:17AM by nexttron96
https://ift.tt/30DdsTK
Fluxbuilder
FluxBuilder | No-Code Mobile App Builder - Website to App in Minutes
Create mobile apps from your website in minutes. No coding required. Drag & drop interface. Publish to App Store & Google Play automatically. Start free today!
New post on /r/flutterdev subreddit:
Flutter Complete Reference eBook
https://ift.tt/3nsuWeo
November 18, 2021 at 12:00PM by Debugger1010
https://ift.tt/3HAKZi4
Flutter Complete Reference eBook
https://ift.tt/3nsuWeo
November 18, 2021 at 12:00PM by Debugger1010
https://ift.tt/3HAKZi4
LunaticAI
We have moved to a new updated website!
New post on /r/flutterdev subreddit:
Flutter iOS agora no audio
Our app work as expected in all cases but we have this case when some one called from any android or iOS device to iOS device which not running the app in foreground mode both the caller device and the receiver not hear each other we are sure that microphone permission has given thanks
November 18, 2021 at 11:58AM by NerdsArena
https://ift.tt/30KuQ98
Flutter iOS agora no audio
Our app work as expected in all cases but we have this case when some one called from any android or iOS device to iOS device which not running the app in foreground mode both the caller device and the receiver not hear each other we are sure that microphone permission has given thanks
November 18, 2021 at 11:58AM by NerdsArena
https://ift.tt/30KuQ98
reddit
Flutter iOS agora no audio
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
I Really Want to Learn Flutter BUT ..
I am a solo freelance, I get project contracts and the clients don't care which technology or tool I use to build their product, so I have the option to go React Native / Flutter / Native.I really want to learn and use Flutter but most of the people I am coming across on online forums are saying negative things about the framework, some say the Dart language is a solution to a problem that doesn't exist, some say the framework itself is slow, some say Google will abonden the project.Could you please share your ideas on the framework? Is Flutter worth investing my time into?
November 18, 2021 at 11:34AM by iEmerald
https://ift.tt/3Fj2jq2
I Really Want to Learn Flutter BUT ..
I am a solo freelance, I get project contracts and the clients don't care which technology or tool I use to build their product, so I have the option to go React Native / Flutter / Native.I really want to learn and use Flutter but most of the people I am coming across on online forums are saying negative things about the framework, some say the Dart language is a solution to a problem that doesn't exist, some say the framework itself is slow, some say Google will abonden the project.Could you please share your ideas on the framework? Is Flutter worth investing my time into?
November 18, 2021 at 11:34AM by iEmerald
https://ift.tt/3Fj2jq2
reddit
I Really Want to Learn Flutter BUT ..
I am a solo freelance, I get project contracts and the clients don't care which technology or tool I use to build their product, so I have the...
New post on /r/flutterdev subreddit:
Endpoints in new backend framework:Style.
https://ift.tt/3x6Y8e8
November 18, 2021 at 02:02PM by mehmetyaz
https://ift.tt/3HAMz3o
Endpoints in new backend framework:Style.
https://ift.tt/3x6Y8e8
November 18, 2021 at 02:02PM by mehmetyaz
https://ift.tt/3HAMz3o
Medium
Style Development Log 2 — Endpoint
I will share the developments related to the style backend framework, which I have announced in the article, in a series. If you have no…
New post on /r/flutterdev subreddit:
Flutter Service Locators In 15 Minutes
https://ift.tt/3nr3FsA
November 18, 2021 at 01:57PM by fredgrott
https://ift.tt/3x0QQZ3
Flutter Service Locators In 15 Minutes
https://ift.tt/3nr3FsA
November 18, 2021 at 01:57PM by fredgrott
https://ift.tt/3x0QQZ3
Medium
Flutter Service Locators In 15 Minutes
Martin Fowler introduced the Services Locator pattern as part of abstracting services to couple them up into an Inversion of Concern…
New post on /r/flutterdev subreddit:
Backend framework ServeMe now supports TCP sockets!
Hello everyone!As probably some of you already know, not that long ago I've published a server framework for Flutter apps: ServeMe https://pub.dev/packages/serveme. It's meant for development of highly efficient server apps for web and mobile applications using WebSockets.Today's update (v1.1.1) brings TCP sockets support with minimal API changes! Simply specify type: ServeMeType.tcp in ServeMe constructor.Note: Though there are some minor changes in ServeMeClient class constructor, instead of taking 2 arguments now it takes single ServeMeSocket argument.P.S. It's not just raw TCP implementation: it already handles data packets boundaries and you don't need to do any additional coding to handle your data messages.P.P.S. Also there's an new method for establishing connections to a remote TCP and WebSocket servers: server.connect(...) (from ConnectMe package https://pub.dev/packages/connectme) - and it allows to use all the data exchange stuff ServeMe supports: fast binary serialized messages (PackMe https://pub.dev/packages/packme), asynchronous queries etc.Enjoy! There will be more :)
November 18, 2021 at 01:56PM by MrSheogorath
https://ift.tt/3oC4ePP
Backend framework ServeMe now supports TCP sockets!
Hello everyone!As probably some of you already know, not that long ago I've published a server framework for Flutter apps: ServeMe https://pub.dev/packages/serveme. It's meant for development of highly efficient server apps for web and mobile applications using WebSockets.Today's update (v1.1.1) brings TCP sockets support with minimal API changes! Simply specify type: ServeMeType.tcp in ServeMe constructor.Note: Though there are some minor changes in ServeMeClient class constructor, instead of taking 2 arguments now it takes single ServeMeSocket argument.P.S. It's not just raw TCP implementation: it already handles data packets boundaries and you don't need to do any additional coding to handle your data messages.P.P.S. Also there's an new method for establishing connections to a remote TCP and WebSocket servers: server.connect(...) (from ConnectMe package https://pub.dev/packages/connectme) - and it allows to use all the data exchange stuff ServeMe supports: fast binary serialized messages (PackMe https://pub.dev/packages/packme), asynchronous queries etc.Enjoy! There will be more :)
November 18, 2021 at 01:56PM by MrSheogorath
https://ift.tt/3oC4ePP
Dart packages
serveme | Dart package
Backend server framework designed for a quick development of modular WebSocket based server applications with MongoDB integration.
New post on /r/flutterdev subreddit:
Flutter package loading_animation_widget to show loading state or something is processing.
https://ift.tt/3CJG0J1
November 17, 2021 at 02:33PM by pavel_birdy
https://ift.tt/3DtOBAd
Flutter package loading_animation_widget to show loading state or something is processing.
https://ift.tt/3CJG0J1
November 17, 2021 at 02:33PM by pavel_birdy
https://ift.tt/3DtOBAd
Dart packages
loading_animation_widget | Flutter Package
Loading animation or loading spiner or loader. It's used to show loading animation when the app is in loading state or something is processing for uncertain time.
New post on /r/flutterdev subreddit:
Drag and drop UI elements in Flutter with Draggable and DragTarget - FlutterBeads
https://ift.tt/30zvCpJ
November 18, 2021 at 01:37PM by pinkeshdarji
https://ift.tt/30ymO3n
Drag and drop UI elements in Flutter with Draggable and DragTarget - FlutterBeads
https://ift.tt/30zvCpJ
November 18, 2021 at 01:37PM by pinkeshdarji
https://ift.tt/30ymO3n
FlutterBeads
Drag and drop UI elements in Flutter with Draggable and DragTarget - FlutterBeads
<span class="rt-reading-time" style="display: block;"><span class="rt-label rt-prefix"></span> <span class="rt-time">7</span> <span class="rt-label rt-postfix">min read</span></span> Drag-and-drop has been around since most of us started using computers.…
New post on /r/flutterdev subreddit:
5 Flutter Tips For Better Code Structure
https://ift.tt/3kNlzUM
November 18, 2021 at 01:29PM by wineandcode
https://ift.tt/3cvq9Cl
5 Flutter Tips For Better Code Structure
https://ift.tt/3kNlzUM
November 18, 2021 at 01:29PM by wineandcode
https://ift.tt/3cvq9Cl
Medium
5 Flutter Tips For Better Code Structure
Here are my humble tips for a cleaner approach to coding
New post on /r/flutterdev subreddit:
Exploring Headless Widgets for Flutter with Mix
https://twitter.com/leoafarias/status/1461321466646040585?s=21
November 18, 2021 at 02:17PM by leokcta
https://ift.tt/3nv0r7D
Exploring Headless Widgets for Flutter with Mix
https://twitter.com/leoafarias/status/1461321466646040585?s=21
November 18, 2021 at 02:17PM by leokcta
https://ift.tt/3nv0r7D
Twitter
Leo⚡Farias
Exploring the concept of headless widgets for #flutterdev. When working on Sidekick I wanted the have more control over design without losing the functionality that Material widgets give you. 💪 This would give you complete design control, and it’s variants…