New post on /r/flutterdev subreddit:
Rendering - Flutter Deep Dive
https://www.youtube.com/watch?v=3k70-1T_LPM
October 30, 2020 at 11:30PM by Elixane
https://ift.tt/3jJvPtQ
Rendering - Flutter Deep Dive
https://www.youtube.com/watch?v=3k70-1T_LPM
October 30, 2020 at 11:30PM by Elixane
https://ift.tt/3jJvPtQ
YouTube
Rendering - Flutter Deep Dive
Rendering - Flutter Deep Dive
After going through what Widgets really are, we need to take a look at how Flutter renders widgets onto the actual device. How does flutter go from Widget tree to pixels on the screen. All this explained and showed off in this…
After going through what Widgets really are, we need to take a look at how Flutter renders widgets onto the actual device. How does flutter go from Widget tree to pixels on the screen. All this explained and showed off in this…
New post on Flutter Dev Google group:
Just updated Flutter from 1.22.2 from 1.22.3
Just updated Flutter from 1.22.2 from 1.22.3. My plugin "firebase_admob: ^0.10.1" is causing problems. It's now throwing errors like crazy and I don't have an answer on how to fix it. FYI; I have tested this plugin in several different basic examples and I get the same results. FYI 2: I have 25
October 31, 2020 at 12:18AM by jerry hamby
https://ift.tt/35OyMV9
Just updated Flutter from 1.22.2 from 1.22.3
Just updated Flutter from 1.22.2 from 1.22.3. My plugin "firebase_admob: ^0.10.1" is causing problems. It's now throwing errors like crazy and I don't have an answer on how to fix it. FYI; I have tested this plugin in several different basic examples and I get the same results. FYI 2: I have 25
October 31, 2020 at 12:18AM by jerry hamby
https://ift.tt/35OyMV9
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:
Setup Firebase Functions (Dart & JS) - Flutter (Tutorial)
https://www.youtube.com/watch?v=7UcM6Y12LEk
October 31, 2020 at 12:17AM by JohannesMilke
https://ift.tt/3efLm3A
Setup Firebase Functions (Dart & JS) - Flutter (Tutorial)
https://www.youtube.com/watch?v=7UcM6Y12LEk
October 31, 2020 at 12:17AM by JohannesMilke
https://ift.tt/3efLm3A
YouTube
Flutter Tutorial - Setup Firebase Functions (Dart & JS)
Write your Firebase Functions with Dart in Flutter. You also have the possibility to use JavaScript & Dart in your Firebase Functions.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: htt…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: htt…
New post on /r/flutterdev subreddit:
How to build a Quiz app using Sqflite in Flutter with Dark Mode
https://youtu.be/wvpHSSnk8JE
October 31, 2020 at 01:37AM by AphrxWasHere
https://ift.tt/34JZtuJ
How to build a Quiz app using Sqflite in Flutter with Dark Mode
https://youtu.be/wvpHSSnk8JE
October 31, 2020 at 01:37AM by AphrxWasHere
https://ift.tt/34JZtuJ
YouTube
Making a Quiz App in Flutter
In this video, I'll be creating a Quiz app using Sqflite in Flutter. We will also add Dark Mode to this app by using provider! If you like this format and would like to see more of it, let me know down in the comments! Or let me know if you prefer the format…
New post on /r/flutterdev subreddit:
<b>What are your thoughts on Navigator 2.0? (And Flutter navigation in general?)</b>
I'm a React Native developer who's been learning flutter for about a week or so and I've got to say that I really love it. For the most part, it seems to do <strong>everything</strong> better than RN, and the static typing and structured widget arguments is soooo much nicer than JSX.That said, one area which I'm not so sure about is the navigation. In React Native, React-Navigation explicitly has multiple types of navigators (Stack, Tab, Drawer, Switch etc) and allows nesting them whilst also being able to call any navigator (without even having to specify which one, provided screen name are unique) within the stack from any screen/component. However, looking at Flutter's built-in Navigator I'm somewhat baffled by its design.Navigator 1.0Having <code>push</code>, <code>pop</code> seems to be a good start, but there's still essentially only one big stack, with limited ways of manipulating the stack (e.g. not being able to pop one below, clear entire stack except current).Navigator 2.0An explicit Navigator widget seems to be a good step in the right direction in my opinion, so that you can have multiple independent or nested navigators depending on which part of the app you're in. That said, I'm not entirely keen on the how the pages argument of the Navigator is used. From <a href="https://medium.com/flutter/learning-flutters-new-navigation-and-routing-system-7c9068155ade">this tutorial</a> I gather that you should have some sort of condition in your pages argument which checks if there should be a certain page a la <code>[ RootPage(), if (_book != null) BookPage(book) ]</code> but this seems terribly constricting due to the fact that now if I want to add another route for movies it would then be <code>[ RootPage(), if (_book != null) BookPage(book), if (_movie != null) MoviePage(movie) ]</code> , which means I can't have the following stack <code>[ Root, Movie, Book ]</code>. Or more importantly I can't have a stack of multiple different books (e.g. navigating through recommendations).The only way I can see to remedy this would then to have pages as <code>[ RootPage() ]</code>, then use the 1.0 navigator api to <code>push</code> and <code>pop</code> normally. That said, whilst I'm aware the 1.0 and 2.0 APIs can be used in conjunction I've yet to see any actual guides or documentation showing this case. One such scenario that isn't clear on is if I call <code>Navigator.push(AnotherRoute())</code> whilst I'm on <code>[ RootPage() ]</code>, what happens if within that new page I call a <code>setState</code> on that <code>_book</code>? Will my stack be <code>[ RootPage(), AnotherRoute(), BookPage() ]</code>, or <code>[ RootPage(), BookPage(), AnotherRoute() ]</code>?Named RoutesAnother aspect I'm not terribly fond of is the route naming convention (and the behaviour that it implies). There seems to be a very large effort in making navigation compatible with web URLs, but I'm baffled as to why this is the case when native application navigation and web URL navigation are fundamentally so different. For example, when I push the routes <code>Book</code>, <code>Movie</code>, <code>Book</code>, <code>Movie</code> in that order, is my URL now at <code>/book/movie/book/movie</code>? On the web, URL and history stack are two completely separate things yet I think I've skimmed over a good amount of documentation about how to parse this into a stack. Admittedly I haven't gone over the web/URL functionality much and could be entirely wrong about this, I just think its a strange route naming convention.The bigger problem I see is that named routes and are passed into <code>MaterialApp</code>, and not <code>Navigator</code>. Therefore I don't see how it's possible to use named routes in nested navigators (e.g. bottom tabs). In React-Navigation each navigator could register a number of screens, and doing <code>navigator.nav…
<b>What are your thoughts on Navigator 2.0? (And Flutter navigation in general?)</b>
I'm a React Native developer who's been learning flutter for about a week or so and I've got to say that I really love it. For the most part, it seems to do <strong>everything</strong> better than RN, and the static typing and structured widget arguments is soooo much nicer than JSX.That said, one area which I'm not so sure about is the navigation. In React Native, React-Navigation explicitly has multiple types of navigators (Stack, Tab, Drawer, Switch etc) and allows nesting them whilst also being able to call any navigator (without even having to specify which one, provided screen name are unique) within the stack from any screen/component. However, looking at Flutter's built-in Navigator I'm somewhat baffled by its design.Navigator 1.0Having <code>push</code>, <code>pop</code> seems to be a good start, but there's still essentially only one big stack, with limited ways of manipulating the stack (e.g. not being able to pop one below, clear entire stack except current).Navigator 2.0An explicit Navigator widget seems to be a good step in the right direction in my opinion, so that you can have multiple independent or nested navigators depending on which part of the app you're in. That said, I'm not entirely keen on the how the pages argument of the Navigator is used. From <a href="https://medium.com/flutter/learning-flutters-new-navigation-and-routing-system-7c9068155ade">this tutorial</a> I gather that you should have some sort of condition in your pages argument which checks if there should be a certain page a la <code>[ RootPage(), if (_book != null) BookPage(book) ]</code> but this seems terribly constricting due to the fact that now if I want to add another route for movies it would then be <code>[ RootPage(), if (_book != null) BookPage(book), if (_movie != null) MoviePage(movie) ]</code> , which means I can't have the following stack <code>[ Root, Movie, Book ]</code>. Or more importantly I can't have a stack of multiple different books (e.g. navigating through recommendations).The only way I can see to remedy this would then to have pages as <code>[ RootPage() ]</code>, then use the 1.0 navigator api to <code>push</code> and <code>pop</code> normally. That said, whilst I'm aware the 1.0 and 2.0 APIs can be used in conjunction I've yet to see any actual guides or documentation showing this case. One such scenario that isn't clear on is if I call <code>Navigator.push(AnotherRoute())</code> whilst I'm on <code>[ RootPage() ]</code>, what happens if within that new page I call a <code>setState</code> on that <code>_book</code>? Will my stack be <code>[ RootPage(), AnotherRoute(), BookPage() ]</code>, or <code>[ RootPage(), BookPage(), AnotherRoute() ]</code>?Named RoutesAnother aspect I'm not terribly fond of is the route naming convention (and the behaviour that it implies). There seems to be a very large effort in making navigation compatible with web URLs, but I'm baffled as to why this is the case when native application navigation and web URL navigation are fundamentally so different. For example, when I push the routes <code>Book</code>, <code>Movie</code>, <code>Book</code>, <code>Movie</code> in that order, is my URL now at <code>/book/movie/book/movie</code>? On the web, URL and history stack are two completely separate things yet I think I've skimmed over a good amount of documentation about how to parse this into a stack. Admittedly I haven't gone over the web/URL functionality much and could be entirely wrong about this, I just think its a strange route naming convention.The bigger problem I see is that named routes and are passed into <code>MaterialApp</code>, and not <code>Navigator</code>. Therefore I don't see how it's possible to use named routes in nested navigators (e.g. bottom tabs). In React-Navigation each navigator could register a number of screens, and doing <code>navigator.nav…
Medium
Learning Flutter’s new Navigation and Routing system
This article explains how Flutter’s new Navigator and Router API works. If you follow Flutter’s open design docs, you might have seen…
New post on /r/flutterdev subreddit:
How to build a Quiz app using Sqflite in Flutter with Dark Mode
https://youtu.be/wvpHSSnk8JE
October 31, 2020 at 03:18AM by AphrxWasHere
https://ift.tt/2TBAiUS
How to build a Quiz app using Sqflite in Flutter with Dark Mode
https://youtu.be/wvpHSSnk8JE
October 31, 2020 at 03:18AM by AphrxWasHere
https://ift.tt/2TBAiUS
YouTube
Making a Quiz App in Flutter
In this video, I'll be creating a Quiz app using Sqflite in Flutter. We will also add Dark Mode to this app by using provider! If you like this format and would like to see more of it, let me know down in the comments! Or let me know if you prefer the format…
New post on /r/flutterdev subreddit:
Mobile Developers Cafe Weekly Issue #12 is out 🎉🎊
https://ift.tt/3earkHH
October 31, 2020 at 05:54AM by iranjith4
https://ift.tt/34Ko1Uc
Mobile Developers Cafe Weekly Issue #12 is out 🎉🎊
https://ift.tt/3earkHH
October 31, 2020 at 05:54AM by iranjith4
https://ift.tt/34Ko1Uc
Mobiledeveloperscafe
Mobile Developers Cafe - Weekly Issue #12
Giveaway week, Apple One launching today, Apple and Alphabet earnings and lot more.
New post on /r/flutterdev subreddit:
Create your own Flutter shortcuts and snippets
https://youtu.be/-Q1SPe1QglU
October 31, 2020 at 10:01AM by thehappyharis
https://ift.tt/2TELP5L
Create your own Flutter shortcuts and snippets
https://youtu.be/-Q1SPe1QglU
October 31, 2020 at 10:01AM by thehappyharis
https://ift.tt/2TELP5L
YouTube
Create your own Flutter shortcuts and snippets
Creating Flutter snippets will definitely help increase your productivity. However, don't go overboard with it. Or not.👉 Subscribe to our weekly Flutter ne...
New post on /r/flutterdev subreddit:
Flutter & Firebase Starter Architecture: Adding an Onboarding Screen [Part 2]
https://youtu.be/KMH-liKbFH4
October 31, 2020 at 09:19AM by bizz84
https://ift.tt/3jKfKUK
Flutter & Firebase Starter Architecture: Adding an Onboarding Screen [Part 2]
https://youtu.be/KMH-liKbFH4
October 31, 2020 at 09:19AM by bizz84
https://ift.tt/3jKfKUK
YouTube
Flutter & Firebase Starter Architecture: Adding an Onboarding Screen [Part 2]
This is the second livestream about adding an onboarding screen to my Starter Architecture demo.This time I'll show you how to persist the onboarding state w...
New post on /r/flutterdev subreddit:
Swiping (effect) like in Discord App
What widgets would you use to recreate the swiping like in the discord app? I guess GestureDetector to handle the swiping itself? I am mainly interested in how you would go about the look : New page does not overlay the old one completely (like a nearly screen size side bar) and the old page gets darker while inactive.
October 31, 2020 at 12:24PM by Coppice_DE
https://ift.tt/2HUoydE
Swiping (effect) like in Discord App
What widgets would you use to recreate the swiping like in the discord app? I guess GestureDetector to handle the swiping itself? I am mainly interested in how you would go about the look : New page does not overlay the old one completely (like a nearly screen size side bar) and the old page gets darker while inactive.
October 31, 2020 at 12:24PM by Coppice_DE
https://ift.tt/2HUoydE
reddit
Swiping (effect) like in Discord App
What widgets would you use to recreate the swiping like in the discord app? I guess GestureDetector to handle the swiping itself? I am mainly...
New post on /r/flutterdev subreddit:
Custom Paint just became more Awesome 🔥 Flutter Shape Maker | Biggest Update
https://youtu.be/FvwSNbq1RpY
October 31, 2020 at 02:14PM by Paras_Jain_09
https://ift.tt/2TH2Z2A
Custom Paint just became more Awesome 🔥 Flutter Shape Maker | Biggest Update
https://youtu.be/FvwSNbq1RpY
October 31, 2020 at 02:14PM by Paras_Jain_09
https://ift.tt/2TH2Z2A
YouTube
Flutter Shape Maker 2.0 - A Tool for Community | Made with Flutter, for Flutter 💙!
#flutter #mobileapp #google
A Tool that auto-generates Responsive code for Flutter Custom Paint Widget based on the shape you draw on the Canvas! You can directly use the generated Flutter Custom Painter in your own Flutter Apps!
✔ Introduction Tutorial…
A Tool that auto-generates Responsive code for Flutter Custom Paint Widget based on the shape you draw on the Canvas! You can directly use the generated Flutter Custom Painter in your own Flutter Apps!
✔ Introduction Tutorial…
New post on /r/flutterdev subreddit:
SharedPreferences - Keep user logged in (Credential persistance)
https://youtu.be/56_PDVvPKOc
October 31, 2020 at 01:59PM by draculamasterwinzy
https://ift.tt/3mCNp4y
SharedPreferences - Keep user logged in (Credential persistance)
https://youtu.be/56_PDVvPKOc
October 31, 2020 at 01:59PM by draculamasterwinzy
https://ift.tt/3mCNp4y
YouTube
Flutter SharedPreferences Login 🔒 | Flutter SharedPreferences Tutorial | Flutter Keep User Logged In
Keep user logged into the flutter application with Shared Preferences Package. In this Flutter SharedPreferences Tutorial I will show you how to Keep User Logged In, Shall we? Flutter SharedPreferences Login 🔒 | Flutter SharedPreferences Tutorial | Flutter…
New post on /r/flutterdev subreddit:
Released an android sdk to reduce video streaming costs by up-to 90%
Hi everyoneI am working on an android sdk which can reduce video streaming costs of CDN by up-to 90% using a hybrid decentralized technology. I have opened it up for beta-access for developers to try it out. Looking for feedback w.r.t the technology and any features you would want to have.A web demo is available here https://api.peervadoo.com/test . Click on Add new peer to see the tech in action,Android sdk link :- https://github.com/vadootvpeer/sdk-android
October 31, 2020 at 01:45PM by ANil1729
https://ift.tt/3mDoZI1
Released an android sdk to reduce video streaming costs by up-to 90%
Hi everyoneI am working on an android sdk which can reduce video streaming costs of CDN by up-to 90% using a hybrid decentralized technology. I have opened it up for beta-access for developers to try it out. Looking for feedback w.r.t the technology and any features you would want to have.A web demo is available here https://api.peervadoo.com/test . Click on Add new peer to see the tech in action,Android sdk link :- https://github.com/vadootvpeer/sdk-android
October 31, 2020 at 01:45PM by ANil1729
https://ift.tt/3mDoZI1
GitHub
GitHub - vadootvpeer/p2p-cdn-sdk-android: Free p2p cdn android github sdk to reduce video streaming costs of live and on demand…
Free p2p cdn android github sdk to reduce video streaming costs of live and on demand video using webrtc by upto 90% and improve scalability by 6x - 🚀 Vadootv 🚀 - vadootvpeer/p2p-cdn-sdk-android
New post on /r/flutterdev subreddit:
How Flutter Renders Widgets
https://youtu.be/3k70-1T_LPM
October 31, 2020 at 01:08PM by immacoder
https://ift.tt/320yZTZ
How Flutter Renders Widgets
https://youtu.be/3k70-1T_LPM
October 31, 2020 at 01:08PM by immacoder
https://ift.tt/320yZTZ
YouTube
Rendering - Flutter Deep Dive
Rendering - Flutter Deep Dive
After going through what Widgets really are, we need to take a look at how Flutter renders widgets onto the actual device. How does flutter go from Widget tree to pixels on the screen. All this explained and showed off in this…
After going through what Widgets really are, we need to take a look at how Flutter renders widgets onto the actual device. How does flutter go from Widget tree to pixels on the screen. All this explained and showed off in this…
New post on /r/flutterdev subreddit:
How to view multiple images from firebase storage in image carousel
I have uploaded my images to firebase now i want to show them in carousel they are multiple images
October 31, 2020 at 02:43PM by ihs_ahm
https://ift.tt/3kLIded
How to view multiple images from firebase storage in image carousel
I have uploaded my images to firebase now i want to show them in carousel they are multiple images
October 31, 2020 at 02:43PM by ihs_ahm
https://ift.tt/3kLIded
reddit
How to view multiple images from firebase storage in image carousel
I have uploaded my images to firebase now i want to show them in carousel they are multiple images
New post on /r/flutterdev subreddit:
Good tutorial for adding functionality to my app?
I know the question may sound weird.Building the UI isn't the problem for me. It's making the app "functional", what is the problem to me. Things like storing data, etc.Anyone can help me out?
October 31, 2020 at 02:26PM by Daaaniell
https://ift.tt/35TR2My
Good tutorial for adding functionality to my app?
I know the question may sound weird.Building the UI isn't the problem for me. It's making the app "functional", what is the problem to me. Things like storing data, etc.Anyone can help me out?
October 31, 2020 at 02:26PM by Daaaniell
https://ift.tt/35TR2My
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New tweet from FlutterDev:
Do you want to join #AdoptAWidget?!
1. Review the rules and info → https://t.co/UpohdS1Q2Y
2. Find a widget you know.
3. Improve its introductory documentation.
Add a code or DartPad snippet, references, and an explanation.
💙 Good luck, can't wait to see your contributions. pic.twitter.com/AmfugC4od7— Flutter (@FlutterDev) October 31, 2020
October 31, 2020 at 06:00PM
http://twitter.com/FlutterDev/status/1322584155515953153
Do you want to join #AdoptAWidget?!
1. Review the rules and info → https://t.co/UpohdS1Q2Y
2. Find a widget you know.
3. Improve its introductory documentation.
Add a code or DartPad snippet, references, and an explanation.
💙 Good luck, can't wait to see your contributions. pic.twitter.com/AmfugC4od7— Flutter (@FlutterDev) October 31, 2020
October 31, 2020 at 06:00PM
http://twitter.com/FlutterDev/status/1322584155515953153
Twitter
#adoptawidget hashtag on Twitter
38m ago @FlutterDev tweeted: "Do you want to join #AdoptAWidget?!
1. .." - read what others are saying and join the conversation.
1. .." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
What do you prefer for Flutter state management
View Poll
October 31, 2020 at 06:42PM by ALOKAMAR123
https://ift.tt/3eg5qm5
What do you prefer for Flutter state management
View Poll
October 31, 2020 at 06:42PM by ALOKAMAR123
https://ift.tt/3eg5qm5
New post on /r/flutterdev subreddit:
Added a Deck widget to my UIC package
https://ift.tt/3oMYKAK
October 31, 2020 at 06:36PM by echedev
https://ift.tt/320t0yw
Added a Deck widget to my UIC package
https://ift.tt/3oMYKAK
October 31, 2020 at 06:36PM by echedev
https://ift.tt/320t0yw
Dart packages
uic | Flutter Package
A set of Flutter UI components that simplifies implementing most used UI cases.
New post on /r/flutterdev subreddit:
Pagination & Infinite Scrolling - Firestore - Flutter (Tutorial)
https://www.youtube.com/watch?v=IruuzPydPz4
October 31, 2020 at 08:11PM by JohannesMilke
https://ift.tt/2THfXxy
Pagination & Infinite Scrolling - Firestore - Flutter (Tutorial)
https://www.youtube.com/watch?v=IruuzPydPz4
October 31, 2020 at 08:11PM by JohannesMilke
https://ift.tt/2THfXxy
YouTube
Flutter Tutorial - Pagination & Infinite Scrolling - Firestore
Load your data from Firebase separately with Pagination & Infinite Scrolling in your Flutter app.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/firebas…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/firebas…
New post on /r/flutterdev subreddit:
Dart on the AWS Ecosystem with Jonathan Böcker
In the latest Dart Developer Show episode, Jonathan Böcker has a fascinating story to share about his work creating the Dart AWS Client packages and how he is using them in production to run diagnostics on his app.Use the links below to jump to any topic that interests you:01:22 -- Jonathan’s background and professional experience02:45 -- AWS big picture overview03:45 -- AWS Lambda05:21 -- AWS Lambda developer workflow08:36 -- Motivation to explore using Dart on AWS Lambda10:17 -- Creation of the Dart AWS Client libraries18:16 -- Use case in production26:11 -- The Dart AWS client open source project on GitHub30:05 -- Final thoughts
October 31, 2020 at 07:04PM by DartDeveloperShow
https://ift.tt/2HOaHFE
Dart on the AWS Ecosystem with Jonathan Böcker
In the latest Dart Developer Show episode, Jonathan Böcker has a fascinating story to share about his work creating the Dart AWS Client packages and how he is using them in production to run diagnostics on his app.Use the links below to jump to any topic that interests you:01:22 -- Jonathan’s background and professional experience02:45 -- AWS big picture overview03:45 -- AWS Lambda05:21 -- AWS Lambda developer workflow08:36 -- Motivation to explore using Dart on AWS Lambda10:17 -- Creation of the Dart AWS Client libraries18:16 -- Use case in production26:11 -- The Dart AWS client open source project on GitHub30:05 -- Final thoughts
October 31, 2020 at 07:04PM by DartDeveloperShow
https://ift.tt/2HOaHFE
The Dart Developer Show
Dart is the fastest growing programming language on Github.
You can use Dart to build mobile apps with Flutter, web apps, server backends, and even desktop apps.
The Dart Developer Show delivers educational and inspirational interviews with interesting…
You can use Dart to build mobile apps with Flutter, web apps, server backends, and even desktop apps.
The Dart Developer Show delivers educational and inspirational interviews with interesting…