New post on /r/flutterdev subreddit:
Introduction To Null Safety In Dart - Preneure
https://ift.tt/5dxwTvP
February 20, 2022 at 07:10PM by preneure
https://ift.tt/SoThWfk
Introduction To Null Safety In Dart - Preneure
https://ift.tt/5dxwTvP
February 20, 2022 at 07:10PM by preneure
https://ift.tt/SoThWfk
Preneure
Introduction To Null Safety In Dart - Preneure
What is Dart Null Safety? In basic terms, null safety in dart means that a variable cannot have a ‘null’...
New post on /r/flutterdev subreddit:
Flutter for web development
people who used flutter for web development what is your fair feed back ?do you think flutter is ready for big scale websites or still needs more improvement?
February 20, 2022 at 09:03PM by sawalm
https://ift.tt/CHmKfaY
Flutter for web development
people who used flutter for web development what is your fair feed back ?do you think flutter is ready for big scale websites or still needs more improvement?
February 20, 2022 at 09:03PM by sawalm
https://ift.tt/CHmKfaY
reddit
Flutter for web development
people who used flutter for web development what is your fair feed back ? do you think flutter is ready for big scale websites or still needs...
New post on /r/flutterdev subreddit:
Flutter Flame
I haven’t messed with flutter flame game engine yet. I was wondering if a base building mechanic would be possible with it. Think clash of clans type base building. Simple 2d base building.
February 20, 2022 at 10:29PM by Pale_Ad9858
https://ift.tt/1SRWvyN
Flutter Flame
I haven’t messed with flutter flame game engine yet. I was wondering if a base building mechanic would be possible with it. Think clash of clans type base building. Simple 2d base building.
February 20, 2022 at 10:29PM by Pale_Ad9858
https://ift.tt/1SRWvyN
reddit
Flutter Flame
I haven’t messed with flutter flame game engine yet. I was wondering if a base building mechanic would be possible with it. Think clash of clans...
New post on /r/flutterdev subreddit:
Flutter REST Movie App: Master Flutter REST API Development - Preneure
https://ift.tt/e6wY8Rd
February 21, 2022 at 12:14AM by preneure
https://ift.tt/nFwe3rU
Flutter REST Movie App: Master Flutter REST API Development - Preneure
https://ift.tt/e6wY8Rd
February 21, 2022 at 12:14AM by preneure
https://ift.tt/nFwe3rU
Preneure
Flutter REST Movie App: Master Flutter REST API Development - Preneure
Do you want to build a complete Flutter REST API application? This is the course for you! WHAT WILL WE...
New post on /r/flutterdev subreddit:
To remove the hard-coded vertical padding of Material context menus …
… you only need to do this:To get rid of hard-coded vertical paddings in a Material (because there is nothing else) context menu, I need to copy and modify
February 20, 2022 at 11:28PM by eibaan
https://ift.tt/PAVBO3x
To remove the hard-coded vertical padding of Material context menus …
… you only need to do this:To get rid of hard-coded vertical paddings in a Material (because there is nothing else) context menu, I need to copy and modify
showMenu()
.This global function is called from within PopupMenuButton
, so I copy PopupMenuButton
as PopupMenuButton2
and PopupMenuButtonState
as PopupMenuButtonState2
, just to change the single call from showMenu()
to showMenu2()
. I need also copy _kMenuDuration
and _kMenuCloseIntervalEnd
.My new showMenu2()
function refers to _PopupMenuRoute
, so I copy that class. It refers to _PopupMenuRouteLayout
, so I copy that class, too. It needs the constants _kMenuScreenPadding
and _kMenuVerticalPadding
, the latter being the constant I want to set to 0.However, _PopupMenuRouteLayout
uses _PopupMenu
which must be copied. It uses the constants _kMenuWidthStep
, _kMenuMinWidth
and _kMenuMaxWidth
.And _PopupMenu
uses _MenuItem
which in turn uses _RenderMenuItem
and both classes must be copied and modified accordingly. They seem to exist to support dynamically changing the context menu size if items change its size, but at least while hot-reloading, this doesn't work.90% of that code is not Material specific and could live in the widgets package. I had to copy more than 600 lines of code (without class comments) just to change a 8.0
to 0.0
. I could however change the menu's shape if I wanted that. Perhaps because egg-shaped menus will become a thing in 2023.And I'm not done yet. the PopupMenuItem
default to a 16pt horizontal padding and a 56pt height. And it hard-codes the disabled state color as well as how to highlight and/or focus items. Luckily, there's an abstract superclass PopupMenuEntry
from which I can inherit to fix all that. At least…February 20, 2022 at 11:28PM by eibaan
https://ift.tt/PAVBO3x
reddit
To remove the hard-coded vertical padding of Material context menus …
… you only need to do this: To get rid of hard-coded vertical paddings in a Material (because there is nothing else) context menu, I need to copy...
New post on /r/flutterdev subreddit:
Can I use setState for micro state managment when using bloc?
I'm trying to manage a micro state that has to persist on all four bloc states, but it's just a component change, so I don't think it would be good to put in the bloc states. Am I right? Thanks
February 21, 2022 at 01:45AM by enzodtz
https://ift.tt/WOo9zK8
Can I use setState for micro state managment when using bloc?
I'm trying to manage a micro state that has to persist on all four bloc states, but it's just a component change, so I don't think it would be good to put in the bloc states. Am I right? Thanks
February 21, 2022 at 01:45AM by enzodtz
https://ift.tt/WOo9zK8
reddit
Can I use setState for micro state managment when using bloc?
I'm trying to manage a micro state that has to persist on all four bloc states, but it's just a component change, so I don't think it would be...
New post on /r/flutterdev subreddit:
FlutterFire x Bloc: Phone Authentication
https://ift.tt/hCerx3v
February 21, 2022 at 05:47AM by Red_Star25
https://ift.tt/341cFYw
FlutterFire x Bloc: Phone Authentication
https://ift.tt/hCerx3v
February 21, 2022 at 05:47AM by Red_Star25
https://ift.tt/341cFYw
Dhruv Nakum
FlutterFire x Bloc: Phone Authentication
Authenticate user with phone number using Firebase 🔥
New post on /r/flutterdev subreddit:
Suggestions needed for a new state management library
Hey 👋 all, I was trying to create a no magic state management library with unidirectional state change but needed some feedback on Api pattern and what are your views.Note: This is highly inspired by state notifier, mobx and provider.view snippetHere is the Github Url !(Note: It is not complete and not tested yet 🙂)
February 21, 2022 at 05:38AM by Efficient_Leave_7462
https://ift.tt/k8DCF3r
Suggestions needed for a new state management library
Hey 👋 all, I was trying to create a no magic state management library with unidirectional state change but needed some feedback on Api pattern and what are your views.Note: This is highly inspired by state notifier, mobx and provider.view snippetHere is the Github Url !(Note: It is not complete and not tested yet 🙂)
February 21, 2022 at 05:38AM by Efficient_Leave_7462
https://ift.tt/k8DCF3r
ImgBB
code
Image code hosted in ImgBB
New post on /r/flutterdev subreddit:
Grocery App - Flutter & NodeJS - Products Listing - EP05
https://youtu.be/nGYdv5MhLUE
February 21, 2022 at 07:47AM by Aromatic-End-3667
https://ift.tt/7DXnHE1
Grocery App - Flutter & NodeJS - Products Listing - EP05
https://youtu.be/nGYdv5MhLUE
February 21, 2022 at 07:47AM by Aromatic-End-3667
https://ift.tt/7DXnHE1
YouTube
Grocery App - Flutter & NodeJS - Products Listing - EP05
In this video we will create Products Listing (Products by Categories, Sorting, Pull Refresh and Lazy Loading (Pagination), by using NodeJS API for our Grocery App Flutter & NodeJS E-Commerce Series.
⏱TIMESTAMPS
00:00 - Introduction
01:24 - Product API
02:49…
⏱TIMESTAMPS
00:00 - Introduction
01:24 - Product API
02:49…
New post on /r/flutterdev subreddit:
Has anyone developed such UI in Flutter
https://ibb.co/VNL3Jv4
February 21, 2022 at 07:22AM by Dhanraj_Flutterdev
https://ift.tt/65JDhBt
Has anyone developed such UI in Flutter
https://ibb.co/VNL3Jv4
February 21, 2022 at 07:22AM by Dhanraj_Flutterdev
https://ift.tt/65JDhBt
New post on /r/flutterdev subreddit:
Dart is the lowest paying language in Stack Overflow's 2021 survey?
Stack Overflow published their 2021 statistics survey, 80,000 developers, hobbyists and professionals voted this year.What do you guys/gals think about Dart being the lowest paying language (on average)?I was kind of underwhelmed and almost took it personally.https://insights.stackoverflow.com/survey/2021#technology-top-paying-technologies
February 21, 2022 at 08:59AM by WasJohnTitorReal
https://ift.tt/AR9QMLN
Dart is the lowest paying language in Stack Overflow's 2021 survey?
Stack Overflow published their 2021 statistics survey, 80,000 developers, hobbyists and professionals voted this year.What do you guys/gals think about Dart being the lowest paying language (on average)?I was kind of underwhelmed and almost took it personally.https://insights.stackoverflow.com/survey/2021#technology-top-paying-technologies
February 21, 2022 at 08:59AM by WasJohnTitorReal
https://ift.tt/AR9QMLN
Stack Overflow
Stack Overflow Developer Survey 2021
In May 2021 over 80,000 developers told us how they learn and level up, which tools they’re using, and what they want.
New post on /r/flutterdev subreddit:
Good flutter books
Hello guys! Do you have some suggestions for a good and updated flutter book?For context, I'm a pretty experienced web developer and I have an idea for a project that I think would work better as a mobile app that as a web app/pwa. For now I understand the basic concepts of flutter and I need something to get good at it to develop my idea as fast and as stably as possible.Thank you in advance guys!!
February 21, 2022 at 11:01AM by -polly3223
https://ift.tt/ZnXuGWg
Good flutter books
Hello guys! Do you have some suggestions for a good and updated flutter book?For context, I'm a pretty experienced web developer and I have an idea for a project that I think would work better as a mobile app that as a web app/pwa. For now I understand the basic concepts of flutter and I need something to get good at it to develop my idea as fast and as stably as possible.Thank you in advance guys!!
February 21, 2022 at 11:01AM by -polly3223
https://ift.tt/ZnXuGWg
reddit
Good flutter books
Hello guys! Do you have some suggestions for a good and updated flutter book? For context, I'm a pretty experienced web developer and I have an...
New post on /r/flutterdev subreddit:
Why Every Flutter Dev Should Care About BuildContext
https://ift.tt/bklcpqy
February 21, 2022 at 12:24PM by we_are_metizsoft
https://ift.tt/MYgsoKV
Why Every Flutter Dev Should Care About BuildContext
https://ift.tt/bklcpqy
February 21, 2022 at 12:24PM by we_are_metizsoft
https://ift.tt/MYgsoKV
Medium
Why Every Flutter Dev Should Care About BuildContext
While the quest for abstraction and the purist’s assertion that all APIs should be simple by design are both noble pursuits, there is a…
New post on /r/flutterdev subreddit:
How to human Test your iOS Flutter App with your dev API
Is it okay to upload a build of your App to TestFight linked to your dev API for your team to test & than upload a new build linked to prod API or are the better practices for internal testing iOS Flutter Apps ?We need to test our App on our Dev API to execute certain aspects of it without impacting our Prod Database
February 21, 2022 at 01:51PM by Isifdis
https://ift.tt/59hRCGq
How to human Test your iOS Flutter App with your dev API
Is it okay to upload a build of your App to TestFight linked to your dev API for your team to test & than upload a new build linked to prod API or are the better practices for internal testing iOS Flutter Apps ?We need to test our App on our Dev API to execute certain aspects of it without impacting our Prod Database
February 21, 2022 at 01:51PM by Isifdis
https://ift.tt/59hRCGq
reddit
How to human Test your iOS Flutter App with your dev API
Is it okay to upload a build of your App to TestFight linked to your dev API for your team to test & than upload a new build linked to prod API or...
New post on /r/flutterdev subreddit:
A more type-safe i18n solution (supports Lists, Maps, Plurals, Gender, Interfaces, etc.)
https://ift.tt/6wW9Eko
February 21, 2022 at 02:45PM by Tienisto
https://ift.tt/6NkY70n
A more type-safe i18n solution (supports Lists, Maps, Plurals, Gender, Interfaces, etc.)
https://ift.tt/6wW9Eko
February 21, 2022 at 02:45PM by Tienisto
https://ift.tt/6NkY70n
Dart packages
fast_i18n | Flutter package
Localization / Internationalization (i18n) solution. Use JSON, YAML or CSV files to create typesafe translations via source generation.
New post on /r/flutterdev subreddit:
Flutter Change/Lock Device Orientation to Portrait/Landscape Only - FlutterBeads
https://ift.tt/0H2UKDn
February 21, 2022 at 02:24PM by pinkeshdarji
https://ift.tt/MEX3KGY
Flutter Change/Lock Device Orientation to Portrait/Landscape Only - FlutterBeads
https://ift.tt/0H2UKDn
February 21, 2022 at 02:24PM by pinkeshdarji
https://ift.tt/MEX3KGY
FlutterBeads
Flutter Change/Lock Device Orientation to Portrait/Landscape Only - FlutterBeads
<span class="rt-reading-time" style="display: block;"><span class="rt-label rt-prefix"></span> <span class="rt-time">4</span> <span class="rt-label rt-postfix">min read</span></span> While developing your Flutter app, you may have a requirement to disable…
New post on /r/flutterdev subreddit:
62% of leaders think that a mobile strategy is a must for any business. Mobility engineering helps businesses stay connected real-time with their customers, foster efficiency, and gain a competitive edge. Visit Nitor Infotech to know more about our mobility engineering services.
MOBILITY ENGINEERING
February 21, 2022 at 02:22PM by Nitorblog
https://ift.tt/FM5sd13
62% of leaders think that a mobile strategy is a must for any business. Mobility engineering helps businesses stay connected real-time with their customers, foster efficiency, and gain a competitive edge. Visit Nitor Infotech to know more about our mobility engineering services.
MOBILITY ENGINEERING
February 21, 2022 at 02:22PM by Nitorblog
https://ift.tt/FM5sd13
Nitorinfotech
Mobile App Development Services | Nitor Infotech
Engage with our expert mobile app development services for innovative solutions. Enhance user engagement and business growth. Nitor Infotech | USA | India
New post on /r/flutterdev subreddit:
How to restore application state if it's killed by the OS
https://ift.tt/t3MANvn
February 21, 2022 at 03:19PM by luccascorrea
https://ift.tt/2P4z8q5
How to restore application state if it's killed by the OS
https://ift.tt/t3MANvn
February 21, 2022 at 03:19PM by luccascorrea
https://ift.tt/2P4z8q5
Medium
State restoration in Flutter
When writing an app, it’s common not to worry about what happens to it when it goes to the background, as you only care about what the user…
New post on /r/flutterdev subreddit:
Late variable declaration can access members in its initializer 🤯
I just discovered that if you declare a variable with late, you can access members of the class in its initializer. Can someone explain me why it's working and if it's safe to do so instead of using initState ?
February 21, 2022 at 05:02PM by Pierre2tm
https://ift.tt/zvqcdX4
Late variable declaration can access members in its initializer 🤯
I just discovered that if you declare a variable with late, you can access members of the class in its initializer. Can someone explain me why it's working and if it's safe to do so instead of using initState ?
class _ExampleState extends State<Example> with SingleTickerProviderStateMixin { _ExampleState(); Duration get computeDuration => const Duration(seconds: 1); // Error: computeDuration can't be accessed in an initializer // Error: invalid reference to this final AnimationController finalController = AnimationController( duration: computeDuration, vsync: this, ); // Working late AnimationController lateController = AnimationController( duration: computeDuration, vsync: this, ); }
February 21, 2022 at 05:02PM by Pierre2tm
https://ift.tt/zvqcdX4
reddit
Late variable declaration can access members in its initializer 🤯
I just discovered that if you declare a variable with late, you can access members of the class in its initializer. Can someone explain me why...
New post on /r/flutterdev subreddit:
Drip, A free Youtube music client built with Flutter.
Project GitHub - https://github.com/Spsden/DripWhat is it ?Drip is a YouTube music client built using flutter. It uses unofficial YouTube Music Api .Features ..Open SourceYouTube Search Artist, tracks , albums and community Playlists.YouTube music HomepageLoads related tracks when you play a trackFluent design language (Microsoft Windows)No ads (Doesn't need YouTube premium)Does not need login or api key or anything as such.Please note this is a very early release that I couldn't wait to share. There are still a lot of bugs and inactive options. I am actively working on it after school hours.This is my First flutter app and I built it while learning the framework. Hope you like it.
February 21, 2022 at 04:35PM by Vismrit
https://ift.tt/fECKh6U
Drip, A free Youtube music client built with Flutter.
Project GitHub - https://github.com/Spsden/DripWhat is it ?Drip is a YouTube music client built using flutter. It uses unofficial YouTube Music Api .Features ..Open SourceYouTube Search Artist, tracks , albums and community Playlists.YouTube music HomepageLoads related tracks when you play a trackFluent design language (Microsoft Windows)No ads (Doesn't need YouTube premium)Does not need login or api key or anything as such.Please note this is a very early release that I couldn't wait to share. There are still a lot of bugs and inactive options. I am actively working on it after school hours.This is my First flutter app and I built it while learning the framework. Hope you like it.
February 21, 2022 at 04:35PM by Vismrit
https://ift.tt/fECKh6U
GitHub
GitHub - Spsden/Drip: A Youtube Music client for Desktop. (in Development)
A Youtube Music client for Desktop. (in Development) - Spsden/Drip
New post on /r/flutterdev subreddit:
🚀 Top 12 Flutter Development Tools. Here is a list of some of the development tools I am using since I started developing with Flutter a little over two years ago.
https://ift.tt/aXqso0k
February 21, 2022 at 05:24PM by rinchapincha
https://ift.tt/Lz0BcMt
🚀 Top 12 Flutter Development Tools. Here is a list of some of the development tools I am using since I started developing with Flutter a little over two years ago.
https://ift.tt/aXqso0k
February 21, 2022 at 05:24PM by rinchapincha
https://ift.tt/Lz0BcMt
Medium
Top 12 Flutter Development Tools
Here is a list of some of the development tools I am using since I started developing with Flutter a little over two years ago.