New post on Flutter Dev Google group:
1.20.0-7.2.pre released to beta.
Hi all, I’m happy to announce that Flutter 1.20 is now available on the beta channel: 1.20.0-7.2.pre
1.20.0-7.2.pre released to beta.
Hi all, I’m happy to announce that Flutter 1.20 is now available on the beta channel: 1.20.0-7.2.pre
New post on Flutter Dev Google group:
help with a test code
I went through with the Codelabs examples: https://ift.tt/32KnZI6. Then I copied the code into a local new project with main.dart as: // import 'dart:async'; import 'package:flutter/material.dart'; // import 'package:flutter_test/flutter_test.dart'; void main() {
July 21, 2020 at 08:04PM by K leo
https://ift.tt/2WHazw9
help with a test code
I went through with the Codelabs examples: https://ift.tt/32KnZI6. Then I copied the code into a local new project with main.dart as: // import 'dart:async'; import 'package:flutter/material.dart'; // import 'package:flutter_test/flutter_test.dart'; void main() {
July 21, 2020 at 08:04PM by K leo
https://ift.tt/2WHazw9
docs.flutter.dev
Basic Flutter layout concepts
A codelab that teaches basic Flutter layout concepts through DartPad examples and exercises.
New post on /r/flutterdev subreddit:
Flutter Package Ecosystem Update
https://ift.tt/2LLSxmA
July 21, 2020 at 10:01AM by QuickBlox
https://ift.tt/3hqw1xw
Flutter Package Ecosystem Update
https://ift.tt/2LLSxmA
July 21, 2020 at 10:01AM by QuickBlox
https://ift.tt/3hqw1xw
Medium
Flutter Package Ecosystem Update
New Flutter Favorites, Apple Sign In and bringing prerelease Flutter plugins into production
New post on /r/flutterdev subreddit:
Opportunity: Learn Mobile Application Development with Flutter and Dart
https://ift.tt/2ZMpl6z
July 21, 2020 at 09:41AM by MyracleDesign
https://ift.tt/32F9Qzf
Opportunity: Learn Mobile Application Development with Flutter and Dart
https://ift.tt/2ZMpl6z
July 21, 2020 at 09:41AM by MyracleDesign
https://ift.tt/32F9Qzf
DEV Community
Opportunity: Learn Mobile Application Development
Invest in yourself — At no risk! Mobile devices are all around us and they pack in more computing...
New post on /r/flutterdev subreddit:
Login With Google In Android App Using Firebase | Google Firebase Sign In | Flutter
https://youtu.be/1G3Jon5zVDU
July 21, 2020 at 07:57PM by praveenthedesigner
https://ift.tt/3eOZ2RE
Login With Google In Android App Using Firebase | Google Firebase Sign In | Flutter
https://youtu.be/1G3Jon5zVDU
July 21, 2020 at 07:57PM by praveenthedesigner
https://ift.tt/3eOZ2RE
YouTube
Login With Google In Android App Using Firebase | Google Firebase Sign In | Flutter
In this video, I have tried to explain to you how to use google sign in the flutter by using firebase. I hope you like it.
Topics covered in this video:
1) How to configure your flutter app into the firebase project
2) How to use google sign in flutter…
Topics covered in this video:
1) How to configure your flutter app into the firebase project
2) How to use google sign in flutter…
New post on /r/flutterdev subreddit:
Flutter E-Commerce App [2] - Sign Up Page Form Auto Validate with Provider
https://www.youtube.com/watch?v=CNlw-OEe1BU&feature=share
July 21, 2020 at 07:44AM by dickyrey
https://ift.tt/2WKoNfA
Flutter E-Commerce App [2] - Sign Up Page Form Auto Validate with Provider
https://www.youtube.com/watch?v=CNlw-OEe1BU&feature=share
July 21, 2020 at 07:44AM by dickyrey
https://ift.tt/2WKoNfA
YouTube
Flutter E-Commerce App [2] - Sign Up Page Form Auto Validate with Provider
#Flutter #MobileApps #Provider #SignIn #FlutterValidation
In this video, we build Sign In Page and Validation form with #Provider App
#UI #Application with #Flutter.
Easy to use, clean UI, create from scratch and recommended for beginner.
I hope you like…
In this video, we build Sign In Page and Validation form with #Provider App
#UI #Application with #Flutter.
Easy to use, clean UI, create from scratch and recommended for beginner.
I hope you like…
New post on /r/flutterdev subreddit:
Cubit State Management Flutter
https://ift.tt/2E7aFGX
July 21, 2020 at 07:34AM by shivanchalpandey
https://ift.tt/2OJFIun
Cubit State Management Flutter
https://ift.tt/2E7aFGX
July 21, 2020 at 07:34AM by shivanchalpandey
https://ift.tt/2OJFIun
Medium
Cubit State Management Flutter
In flutter, state management is like a life support system where the whole App depends on, there are different state management techniques…
New post on /r/flutterdev subreddit:
Reading lists from Firestore using StreamBuilder in Flutter
https://ift.tt/3hkCHgs
July 21, 2020 at 07:53PM by jetblack-pope
https://ift.tt/30xoi9Y
Reading lists from Firestore using StreamBuilder in Flutter
https://ift.tt/3hkCHgs
July 21, 2020 at 07:53PM by jetblack-pope
https://ift.tt/30xoi9Y
Medium
Reading lists from Firestore using StreamBuilder in Flutter
One of the first things that I had to learn when I picked up flutter development a couple of years ago was how to use StreamBuilders…
New post on /r/flutterdev subreddit:
Flutter Web: Complete Gaming Hosting Service
Hello Flutter devs,I have just finished developing a gaming hosting service site using Flutter Web, the source code is available on Github and I wanted to share my experience.Before I start it's important to know that I'm not a professional dev and I'm very new to web development, coding is my passion and I'm just in high school, though I've always focused on mobile, desktop and backends using languages like Java, Kotlin, C++ and C#, so I don't really have a point of reference to determine if flutter web has the potential to be better than other web frameworks.First of all, it's clear from the very start that Flutter Web is in beta: scrolling is terrible on mobile devices, mostly on firefox, but it sometimes also happens on Chrome Mobile, Desktop browsers will not suffer from this problem. Now, this is not a problem if your web app uses scrolling in small widgets, but if the whole thing has to scroll prepare yourself for some trouble. I've opened an issue on GitHub, but I noticed that there are at least three that present a similar problem, no solution was found to this day for the issue in the engine. Though SKIA(Web Assembly) seems to fix this, but while it fixed scrolling performance, it breaks everything else from the Navigator to the page loading times. In the end, I was able to bring 60 fps scrolling to desktop, chrome mobile, but firefox mobile still seems to struggle.The app is built to scale for all screens as visible from the source code, this works perfectly, so the app is reactive.The site can become a PWA, no code was needed, honestly, I didn't even realize that it was a thing until I saw a talk on the Flutter channel lol.Developing the site was just a fantastic experience: developing for the web is as easy as for mobile(excluding that weird problem that drove me crazy), hot reload works as expected, the webserver option is really nice.In the end, Flutter Web is probably not production-ready, but with better Web Assembly Support(SKIA), instead of dart2js, and with the scrolling bug fix it could easily become the best frameworks for web development.Some screenshots:Desktop: https://imgur.com/a/mbi4jrnMobile: https://imgur.com/a/ORYDYOG
July 21, 2020 at 09:42PM by Alex0589
https://ift.tt/2OJY1j9
Flutter Web: Complete Gaming Hosting Service
Hello Flutter devs,I have just finished developing a gaming hosting service site using Flutter Web, the source code is available on Github and I wanted to share my experience.Before I start it's important to know that I'm not a professional dev and I'm very new to web development, coding is my passion and I'm just in high school, though I've always focused on mobile, desktop and backends using languages like Java, Kotlin, C++ and C#, so I don't really have a point of reference to determine if flutter web has the potential to be better than other web frameworks.First of all, it's clear from the very start that Flutter Web is in beta: scrolling is terrible on mobile devices, mostly on firefox, but it sometimes also happens on Chrome Mobile, Desktop browsers will not suffer from this problem. Now, this is not a problem if your web app uses scrolling in small widgets, but if the whole thing has to scroll prepare yourself for some trouble. I've opened an issue on GitHub, but I noticed that there are at least three that present a similar problem, no solution was found to this day for the issue in the engine. Though SKIA(Web Assembly) seems to fix this, but while it fixed scrolling performance, it breaks everything else from the Navigator to the page loading times. In the end, I was able to bring 60 fps scrolling to desktop, chrome mobile, but firefox mobile still seems to struggle.The app is built to scale for all screens as visible from the source code, this works perfectly, so the app is reactive.The site can become a PWA, no code was needed, honestly, I didn't even realize that it was a thing until I saw a talk on the Flutter channel lol.Developing the site was just a fantastic experience: developing for the web is as easy as for mobile(excluding that weird problem that drove me crazy), hot reload works as expected, the webserver option is really nice.In the end, Flutter Web is probably not production-ready, but with better Web Assembly Support(SKIA), instead of dart2js, and with the scrolling bug fix it could easily become the best frameworks for web development.Some screenshots:Desktop: https://imgur.com/a/mbi4jrnMobile: https://imgur.com/a/ORYDYOG
July 21, 2020 at 09:42PM by Alex0589
https://ift.tt/2OJY1j9
GitHub
GitHub - Auties00/hytaleserverhosting: Hytales Server Hosting
Hytales Server Hosting. Contribute to Auties00/hytaleserverhosting development by creating an account on GitHub.
Flutter Heroes pinned «Do you want to post a job offer? Find out more here: @flutterDevInfo»
New post on Flutter Dev Google group:
Document snapshot to object/class
So I have a document in firebase that looks like this: [image: Annotation 2020-07-21 152218.png] In my project I have a class that looks like this: class GroupData { final String groupUID; final String groupName; final String groupAvatarUrl; final String groupLeader; final DateTime
July 21, 2020 at 09:47PM by Tililweet
https://ift.tt/30Nz5x1
Document snapshot to object/class
So I have a document in firebase that looks like this: [image: Annotation 2020-07-21 152218.png] In my project I have a class that looks like this: class GroupData { final String groupUID; final String groupName; final String groupAvatarUrl; final String groupLeader; final DateTime
July 21, 2020 at 09:47PM by Tililweet
https://ift.tt/30Nz5x1
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:
Flutter Interview Questions and Answers
https://ift.tt/2CR3MZR
July 21, 2020 at 11:22PM by Swefnian
https://ift.tt/3jlot0y
Flutter Interview Questions and Answers
https://ift.tt/2CR3MZR
July 21, 2020 at 11:22PM by Swefnian
https://ift.tt/3jlot0y
kodeco.com
Flutter Interview Questions and Answers
In this article, you’ll work through a series of Flutter and Dart job interview questions and answers.
New post on /r/flutterdev subreddit:
New package: Drag-and-drop reordering of two-level lists
I've just released my first flutter package for drag-and-drop reordering of two-level lists: drag_and_drop_lists.Github repo.This is useful for when you have a list of lists that should be reorderable. For example, a trello/kanban board or when you would like to drag a new item into a list from outside of the list itself.Unlike other reorderable list packages like reorderables, ReorderableListView, or draggable_flutter_list, this package supports reordering items between multiple lists, and reordering individual lists as well.Other features include:Many formatting options
Expandable/collapsible lists
Drag in lists or items from outside of the widget
Slivers supported
Extensive examples
If you like it, please support my work by leaving a ⭐ on the Github repository!
July 22, 2020 at 01:08AM by mesrdisk
https://ift.tt/3hneAh5
New package: Drag-and-drop reordering of two-level lists
I've just released my first flutter package for drag-and-drop reordering of two-level lists: drag_and_drop_lists.Github repo.This is useful for when you have a list of lists that should be reorderable. For example, a trello/kanban board or when you would like to drag a new item into a list from outside of the list itself.Unlike other reorderable list packages like reorderables, ReorderableListView, or draggable_flutter_list, this package supports reordering items between multiple lists, and reordering individual lists as well.Other features include:Many formatting options
Expandable/collapsible lists
Drag in lists or items from outside of the widget
Slivers supported
Extensive examples
If you like it, please support my work by leaving a ⭐ on the Github repository!
July 22, 2020 at 01:08AM by mesrdisk
https://ift.tt/3hneAh5
Dart packages
drag_and_drop_lists | Flutter package
A flutter package to allow drag-and-drop reordering of two-level lists.
New post on /r/flutterdev subreddit:
Flutter Tutorial for Absolute Beginners
https://youtu.be/fkixJO5VoKY
July 22, 2020 at 01:45AM by codingright
https://ift.tt/2OIBX8r
Flutter Tutorial for Absolute Beginners
https://youtu.be/fkixJO5VoKY
July 22, 2020 at 01:45AM by codingright
https://ift.tt/2OIBX8r
YouTube
Flutter Tutorial for Beginners - Build iOS and Android Apps
Time Markers:
0:00:00 - Introduction
0:01:59 - Installing Flutter SDK
0:02:22 - Installing Android Studio
0:03:12 - Installing Visual Studio Code
0:03:39 - Setting Up Android Studio for Flutter Development
0:04:56 - Creating Virtual Device on Android…
0:00:00 - Introduction
0:01:59 - Installing Flutter SDK
0:02:22 - Installing Android Studio
0:03:12 - Installing Visual Studio Code
0:03:39 - Setting Up Android Studio for Flutter Development
0:04:56 - Creating Virtual Device on Android…
New post on /r/flutterdev subreddit:
Sierpiński triangle by pavel recreated in 636 chars in Flutter; CodePen by @creativemaybeno
https://twitter.com/creativemaybeno/status/1285716298006224896?s=20
July 22, 2020 at 01:25AM by creativemaybeno
https://ift.tt/30tKWQw
Sierpiński triangle by pavel recreated in 636 chars in Flutter; CodePen by @creativemaybeno
https://twitter.com/creativemaybeno/status/1285716298006224896?s=20
July 22, 2020 at 01:25AM by creativemaybeno
https://ift.tt/30tKWQw
Twitter
creativecreatorormaybenot
I recreated one of my old favorites in #Flutter in 636 characters 🥳 Mesmerizing to say the least #FlutterPen 🚀 https://t.co/7AHG0qZma4 And yes, this stuff is handcrafted 🛠 So much respect to pavel ❤ https://t.co/N1zyIfldjL
New post on Flutter Dev Google group:
How to wait for async Future function to finish before building widget in scaffold?
Hi, My main.dart is using android_path_provider package to get the documents path. This path is then passed to another class (stateful widget) which reads files from this path. The problem is that sometimes, the document path does not update in time and widget build fails as it does not get
July 22, 2020 at 01:07AM by Faraz Khan
https://ift.tt/3jpJhUF
How to wait for async Future function to finish before building widget in scaffold?
Hi, My main.dart is using android_path_provider package to get the documents path. This path is then passed to another class (stateful widget) which reads files from this path. The problem is that sometimes, the document path does not update in time and widget build fails as it does not get
July 22, 2020 at 01:07AM by Faraz Khan
https://ift.tt/3jpJhUF
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:
Flutter Tutorial for Absolute Beginners
https://youtu.be/fkixJO5VoKY
July 22, 2020 at 01:49AM by codingright
https://ift.tt/3fP06pP
Flutter Tutorial for Absolute Beginners
https://youtu.be/fkixJO5VoKY
July 22, 2020 at 01:49AM by codingright
https://ift.tt/3fP06pP
YouTube
Flutter Tutorial for Beginners - Build iOS and Android Apps
Time Markers:
0:00:00 - Introduction
0:01:59 - Installing Flutter SDK
0:02:22 - Installing Android Studio
0:03:12 - Installing Visual Studio Code
0:03:39 - Setting Up Android Studio for Flutter Development
0:04:56 - Creating Virtual Device on Android…
0:00:00 - Introduction
0:01:59 - Installing Flutter SDK
0:02:22 - Installing Android Studio
0:03:12 - Installing Visual Studio Code
0:03:39 - Setting Up Android Studio for Flutter Development
0:04:56 - Creating Virtual Device on Android…
New post on Flutter Dev Google group:
firebase
i can create ui but i did not know how i work with firebase ?
July 22, 2020 at 02:49AM by Rohan jangid
https://ift.tt/2E6YHNA
firebase
i can create ui but i did not know how i work with firebase ?
July 22, 2020 at 02:49AM by Rohan jangid
https://ift.tt/2E6YHNA
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:
Sierpiński triangle by pavel recreated in 636 chars in Flutter; CodePen by @creativemaybeno
https://twitter.com/creativemaybeno/status/1285716298006224896?s=20
July 22, 2020 at 03:44AM by creativemaybeno
https://ift.tt/32HIHvK
Sierpiński triangle by pavel recreated in 636 chars in Flutter; CodePen by @creativemaybeno
https://twitter.com/creativemaybeno/status/1285716298006224896?s=20
July 22, 2020 at 03:44AM by creativemaybeno
https://ift.tt/32HIHvK
Twitter
creativecreatorormaybenot
I recreated one of my old favorites in #Flutter in 636 characters 🥳 Mesmerizing to say the least #FlutterPen 🚀 https://t.co/7AHG0qZma4 And yes, this stuff is handcrafted 🛠 So much respect to pavel ❤ https://t.co/N1zyIfldjL
New post on Flutter Dev Google group:
How to save changes made to text file after opening it using File.readAsString()?
Hi, I have a text file in memory that I open using File.readAsString().. This extracts the text from it and saves it as a String. This is given to a TextField() so that changes can be made to this text. How do I effectively save these changes back to the original file? Here is my code so far.
July 22, 2020 at 03:35AM by Faraz Khan
https://ift.tt/30x2bjS
How to save changes made to text file after opening it using File.readAsString()?
Hi, I have a text file in memory that I open using File.readAsString().. This extracts the text from it and saves it as a String. This is given to a TextField() so that changes can be made to this text. How do I effectively save these changes back to the original file? Here is my code so far.
July 22, 2020 at 03:35AM by Faraz Khan
https://ift.tt/30x2bjS
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.