New post on /r/flutterdev subreddit:
What solution do you use for logging?
There are multiple ways to do logging in flutter. What solutions do you use in your apps (and how big are those apps)? Have you found a need to switch logging solutions because your first choice turned out to be bad as the development of your app progressed?
April 12, 2021 at 09:00AM by ChristianKl
https://ift.tt/3tfYlZC
  
  What solution do you use for logging?
There are multiple ways to do logging in flutter. What solutions do you use in your apps (and how big are those apps)? Have you found a need to switch logging solutions because your first choice turned out to be bad as the development of your app progressed?
April 12, 2021 at 09:00AM by ChristianKl
https://ift.tt/3tfYlZC
reddit
  
  What solution do you use for logging?
  There are multiple ways to do logging in flutter. What solutions do you use in your apps (and how big are those apps)? Have you found a need to...
  New post on Flutter Dev Google group:
pdf.save() Not working for PDF creation help!
i am reproducing a code from a pdf tutorial, which i have copied the exact codes. but i cant make it work. there is only one line that is not working. pls help! thank you! CODE HERE _______ import 'dart:io'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import
April 12, 2021 at 09:42AM by potato gaming
https://ift.tt/3taUP2P
  
  pdf.save() Not working for PDF creation help!
i am reproducing a code from a pdf tutorial, which i have copied the exact codes. but i cant make it work. there is only one line that is not working. pls help! thank you! CODE HERE _______ import 'dart:io'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import
April 12, 2021 at 09:42AM by potato gaming
https://ift.tt/3taUP2P
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:
Let's Build a Trivia (Quiz) Application with Flutter & Appwrite in less than 40 mins
https://youtu.be/J3XSlYUhdqs
April 12, 2021 at 09:51AM by lohanidamodar
https://ift.tt/3d9NUky
  
  Let's Build a Trivia (Quiz) Application with Flutter & Appwrite in less than 40 mins
https://youtu.be/J3XSlYUhdqs
April 12, 2021 at 09:51AM by lohanidamodar
https://ift.tt/3d9NUky
YouTube
  
  Appwrite ❤️ Flutter : A Trivia Application (Quiz Application)
  Let's learn how we can quickly build a Trivia (Quiz) application with Flutter and Appwrite.
Source Code: https://github.com/lohanidamodar/flutter_appwrite_quizeee
https://appwrite.io
https://appwrite.io/discord
_______________________________________________…
  Source Code: https://github.com/lohanidamodar/flutter_appwrite_quizeee
https://appwrite.io
https://appwrite.io/discord
_______________________________________________…
New post on Flutter Dev Google group:
error PlatformException(CANCELED, User canceled login, null, null)
hai team, i am using below code to authenticate *fitbit* final result = await FlutterWebAuth.authenticate(url: url.toString(), callbackUrlScheme: callbackUrlScheme).catchError((onError){ print("error $onError"); }); but after redirected to my app screen, i am unable to get result
April 12, 2021 at 10:46AM by kesava bandi
https://ift.tt/3a3NGK9
  
  error PlatformException(CANCELED, User canceled login, null, null)
hai team, i am using below code to authenticate *fitbit* final result = await FlutterWebAuth.authenticate(url: url.toString(), callbackUrlScheme: callbackUrlScheme).catchError((onError){ print("error $onError"); }); but after redirected to my app screen, i am unable to get result
April 12, 2021 at 10:46AM by kesava bandi
https://ift.tt/3a3NGK9
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:
Need a flutter developer
We are looking for a flutter developer who can do an end - end process of publishing an app to the google Play store / App Store and also help us building an iOS stack for the app ( Android is already done) , has a thorough know- how of google policies ( News policy to be specific )Responsibility : - Understanding google news policy - Check for already existing issue with the app ( Policy related) - Publish the appQualification : A verified Flutter developerSeniority level N/AContact:+91 8105434634
April 12, 2021 at 10:56AM by Neither_Raccoon_8815
https://ift.tt/3dasBiR
  
  Need a flutter developer
We are looking for a flutter developer who can do an end - end process of publishing an app to the google Play store / App Store and also help us building an iOS stack for the app ( Android is already done) , has a thorough know- how of google policies ( News policy to be specific )Responsibility : - Understanding google news policy - Check for already existing issue with the app ( Policy related) - Publish the appQualification : A verified Flutter developerSeniority level N/AContact:+91 8105434634
April 12, 2021 at 10:56AM by Neither_Raccoon_8815
https://ift.tt/3dasBiR
reddit
  
  Need a flutter developer
  A subreddit for Google's portable UI framework.
  New post on /r/flutterdev subreddit:
Flutter errors handling rant
Say you want to send all unhandled exceptions to your server.You google "flutter errors handling" and that leads you to https://flutter.dev/docs/testing/errors#quit-application-on-encountering-an-error"Nice and simple" you think, add the code and attempt to live happily ever after. But sooner or later you find out that the
April 12, 2021 at 12:04PM by submergedmole
https://ift.tt/3dO85ne
  
  Flutter errors handling rant
Say you want to send all unhandled exceptions to your server.You google "flutter errors handling" and that leads you to https://flutter.dev/docs/testing/errors#quit-application-on-encountering-an-error"Nice and simple" you think, add the code and attempt to live happily ever after. But sooner or later you find out that the
void _onTap() async { ... } function you pass to a button throws sometimes, and its exceptions are not caught by FlutterError.onError.You google again and eventually find that all exceptions thrown by async functions called by normal functions are just swallowed by the VM. To really catch all exceptions one should:set FlutterError.onError,call runZonedGuarded,...so that's what you do.But the exceptions are still not caught for some reason! You spend some more time debugging and eventually figure out that WidgetsFlutterBinding.ensureInitialized() should be called from within runZonedGuarded for the exceptions to be caught.Seems too much of googling and debugging for a base requirement of handling all exceptions.April 12, 2021 at 12:04PM by submergedmole
https://ift.tt/3dO85ne
docs.flutter.dev
  
  Handling errors in Flutter
  How to control error messages and logging of errors
  New post on /r/flutterdev subreddit:
Learn how to build Video Calling App using Flutter and WebRTC
Building an engaging video calling app can be simple if you build it on a secure and robust WebRTC platform. In this tutorial, you’ll learn how to add a group calling function to your Flutter app.https://www.enablex.io/insights/how-to-build-video-calling-app-using-flutter-and-enablex/
April 12, 2021 at 11:31AM by JasonWills343
https://ift.tt/3mD7lFL
  
  Learn how to build Video Calling App using Flutter and WebRTC
Building an engaging video calling app can be simple if you build it on a secure and robust WebRTC platform. In this tutorial, you’ll learn how to add a group calling function to your Flutter app.https://www.enablex.io/insights/how-to-build-video-calling-app-using-flutter-and-enablex/
April 12, 2021 at 11:31AM by JasonWills343
https://ift.tt/3mD7lFL
Enablex Insights
  
  How To Make A Video Calling App Using Flutter | EnableX Insight
  In this tutorial, you’ll learn how to make a video calling app with group video calling feature in your Flutter app, using EnableX Video call API.
  New post on /r/flutterdev subreddit:
Structures
What’s the typical “structure” of a class / widget?.. as in, there’s appBar, but then there’s “children” or “name: Name” and similar .... what’s a good reference to what you put after, what?
April 12, 2021 at 01:50PM by Codeeveryday123
https://ift.tt/2Qf5URF
  
  Structures
What’s the typical “structure” of a class / widget?.. as in, there’s appBar, but then there’s “children” or “name: Name” and similar .... what’s a good reference to what you put after, what?
April 12, 2021 at 01:50PM by Codeeveryday123
https://ift.tt/2Qf5URF
reddit
  
  Structures
  What’s the typical “structure” of a class / widget?.. as in, there’s appBar, but then there’s “children” or “name: Name” and similar .... what’s...
  New post on /r/flutterdev subreddit:
Uploading data to Firebase.
Hi, I want to upload data to firebase for the user to see and leave a review on them if they would like. Someone told me to make DataTable but considering the data is large it will be tough to hardcode it. I have a List of courses with their number if credits and the course description. I want to upload that. Please guide me how to. Thank you, E.
April 12, 2021 at 01:39PM by ethanxz8
https://ift.tt/3mGz4W3
  
  Uploading data to Firebase.
Hi, I want to upload data to firebase for the user to see and leave a review on them if they would like. Someone told me to make DataTable but considering the data is large it will be tough to hardcode it. I have a List of courses with their number if credits and the course description. I want to upload that. Please guide me how to. Thank you, E.
April 12, 2021 at 01:39PM by ethanxz8
https://ift.tt/3mGz4W3
reddit
  
  Uploading data to Firebase.
  Hi, I want to upload data to firebase for the user to see and leave a review on them if they would like. Someone told me to make DataTable but...
  New post on /r/flutterdev subreddit:
What would be the best way to make something like this in Flutter?
https://ift.tt/3s6iRKJ
April 12, 2021 at 01:35PM by xaad29
https://ift.tt/3uARcn0
  
  What would be the best way to make something like this in Flutter?
https://ift.tt/3s6iRKJ
April 12, 2021 at 01:35PM by xaad29
https://ift.tt/3uARcn0
reddit
  
  Anyone know how to make my list look like this in swiftUI?
  Posted in r/SwiftUI by u/J81rd84 • 67 points and 12 comments
  New post on /r/flutterdev subreddit:
Android Studio vs IntelliJ IDEA Community
For Flutter development, what are some key differences between the two platforms? Which ones are you using, and for those who used both, what is your choice, and why?I've been using Android Studio which has been great so far. The easy management of the AVD and SDKs makes it really good for beginners who want to get into Flutter. As far as I know, IntelliJ IDEA CE offers SDK selection but not AVDs, and there is some support for profiling whereas IntelliJ lists only the ultimate version includes it.Thanks for any detail.
April 12, 2021 at 04:28PM by dropcmd
https://ift.tt/3uEdvYM
  
  Android Studio vs IntelliJ IDEA Community
For Flutter development, what are some key differences between the two platforms? Which ones are you using, and for those who used both, what is your choice, and why?I've been using Android Studio which has been great so far. The easy management of the AVD and SDKs makes it really good for beginners who want to get into Flutter. As far as I know, IntelliJ IDEA CE offers SDK selection but not AVDs, and there is some support for profiling whereas IntelliJ lists only the ultimate version includes it.Thanks for any detail.
April 12, 2021 at 04:28PM by dropcmd
https://ift.tt/3uEdvYM
reddit
  
  Android Studio vs IntelliJ IDEA Community
  For Flutter development, what are some key differences between the two platforms? Which ones are you using, and for those who used both, what is...
  New post on /r/flutterdev subreddit:
Learning Curve
How much of a learning curve to flutter is there?I’m coming from knowing Vanilla HTML / CSS. React, Vue, Bootstrap, Material-UI, Styled-Components SASS.I’m playing around a little bit with some examples,BUT, it seems like it’s very much “THIS BELONGS WITH THAT” ...not so much freedom with designing.I want to just add my styles to a style: Styles() but it’s not that simple, it seems like it would work like that...
April 12, 2021 at 05:11PM by Codeeveryday123
https://ift.tt/3mCyXLa
  
  Learning Curve
How much of a learning curve to flutter is there?I’m coming from knowing Vanilla HTML / CSS. React, Vue, Bootstrap, Material-UI, Styled-Components SASS.I’m playing around a little bit with some examples,BUT, it seems like it’s very much “THIS BELONGS WITH THAT” ...not so much freedom with designing.I want to just add my styles to a style: Styles() but it’s not that simple, it seems like it would work like that...
April 12, 2021 at 05:11PM by Codeeveryday123
https://ift.tt/3mCyXLa
reddit
  
  Learning Curve
  How much of a learning curve to flutter is there? I’m coming from knowing Vanilla HTML / CSS. React, Vue,...
  New tweet from FlutterDev:
3️⃣ things can be 👀 forever: 🔥, ⛲️, and someone doing your job. 😉
Join “Code less, deliver more” session by Anna Domashych (@AnnaDomashych) to watch code generation in action! ⚡️ 🎉 💙
at #FlutteristasConf2021🤩
Register now! https://t.co/ZlxUXBnRzh#flutteristas pic.twitter.com/lXo2GTSl6D— Flutteristas Conference (@FlutteristasCon) April 7, 2021
April 12, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1381638241451966470
  
  3️⃣ things can be 👀 forever: 🔥, ⛲️, and someone doing your job. 😉
Join “Code less, deliver more” session by Anna Domashych (@AnnaDomashych) to watch code generation in action! ⚡️ 🎉 💙
at #FlutteristasConf2021🤩
Register now! https://t.co/ZlxUXBnRzh#flutteristas pic.twitter.com/lXo2GTSl6D— Flutteristas Conference (@FlutteristasCon) April 7, 2021
April 12, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1381638241451966470
Twitter
  
  Anna Domashych 👩💻💙📱 (@AnnaDomashych) | Twitter
  The latest Tweets from Anna Domashych 👩💻💙📱 (@AnnaDomashych). Experienced mobile apps developer passionate about Flutter and quality software. Available for hire remotely. Ukraine
  New post on Flutter Dev Google group:
Load an existing SQLite file and display in a Grid
Hello, I’m a newbie in Flutter. I searched several days everywhere, but still didn’t find a needful plain example. All I want is open an existing SQLite file, display records in a Grid, and after clicking on a row - open this record with all fields in a new window. How can this be done?? Thank
April 12, 2021 at 06:10PM by Steepe Hare
https://ift.tt/3dWJ8pR
  
  Load an existing SQLite file and display in a Grid
Hello, I’m a newbie in Flutter. I searched several days everywhere, but still didn’t find a needful plain example. All I want is open an existing SQLite file, display records in a Grid, and after clicking on a row - open this record with all fields in a new window. How can this be done?? Thank
April 12, 2021 at 06:10PM by Steepe Hare
https://ift.tt/3dWJ8pR
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:
Creating your own Inherited Widgets - gskinner blog
https://ift.tt/3e2xgD0
April 12, 2021 at 07:03PM by gskinner_team
https://ift.tt/2PVDufL
  
  Creating your own Inherited Widgets - gskinner blog
https://ift.tt/3e2xgD0
April 12, 2021 at 07:03PM by gskinner_team
https://ift.tt/2PVDufL
gskinner blog
  
  Flutter: Creating your own Inherited Widgets - gskinner blog
  While we generally use Provider or GetIt to pass things around in Flutter, there are times when you don't want to have any dependencies on these
  New post on Flutter Dev Google group:
CPU usage is idle on stable but 20% on dev channel
I recently switched to stable to test out tab character processing. Web and Linux had a 20% cpu usage on the dev channel. When I reported it on Discord. Someone mentioned they could see a 5% usage (better hardware?). Just a heads up that it is 0, now that I am using stable.
April 12, 2021 at 07:59PM by Kevin Chadwick
https://ift.tt/3g8g4hQ
  
  CPU usage is idle on stable but 20% on dev channel
I recently switched to stable to test out tab character processing. Web and Linux had a 20% cpu usage on the dev channel. When I reported it on Discord. Someone mentioned they could see a 5% usage (better hardware?). Just a heads up that it is 0, now that I am using stable.
April 12, 2021 at 07:59PM by Kevin Chadwick
https://ift.tt/3g8g4hQ
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:
Why you should NOT use NativeScript
https://ift.tt/3dbkpiz
April 12, 2021 at 08:49PM by yiss92
https://ift.tt/3dbz6SP
  
  Why you should NOT use NativeScript
https://ift.tt/3dbkpiz
April 12, 2021 at 08:49PM by yiss92
https://ift.tt/3dbz6SP
Medium
  
  Why you should NOT use NativeScript
  It’s been two years since our company decided we’ll pick NativeScript to create and maintain our Android App.
  New tweet from FlutterDev:
Is it possible to become "From Zero Programming Knowledge to Software Engineer in 2 years"?🧐
The answer is YES, Mahtab(@mahtab_dev) accomplished it! She is working in Germany now!🎉💙
Join #FlutteristasConf2021🤩 to listen!
Register now! https://t.co/ZlxUXB6gHJ#flutteristas pic.twitter.com/wjcxe7EK7j— Flutteristas Conference (@FlutteristasCon) April 8, 2021
April 12, 2021 at 08:59PM
http://twitter.com/FlutterDev/status/1381683486378057738
  
  Is it possible to become "From Zero Programming Knowledge to Software Engineer in 2 years"?🧐
The answer is YES, Mahtab(@mahtab_dev) accomplished it! She is working in Germany now!🎉💙
Join #FlutteristasConf2021🤩 to listen!
Register now! https://t.co/ZlxUXB6gHJ#flutteristas pic.twitter.com/wjcxe7EK7j— Flutteristas Conference (@FlutteristasCon) April 8, 2021
April 12, 2021 at 08:59PM
http://twitter.com/FlutterDev/status/1381683486378057738
Twitter
  
  Mahtab 💙 (@mahtab_dev) | Twitter
  The latest Tweets from Mahtab 💙 (@mahtab_dev). Passionate Flutter & Dart Developer 👩💻🔥 && YouTube content creator: https://t.co/ZuHf6Id74U && Second round of #100DaysOfCode. Karlsruhe
  New post on /r/flutterdev subreddit:
Flutter Animated Cart Page
https://youtu.be/VAYYOA2ntx8
April 12, 2021 at 09:22PM by codecrafts
https://ift.tt/3g5Kpxq
  
  Flutter Animated Cart Page
https://youtu.be/VAYYOA2ntx8
April 12, 2021 at 09:22PM by codecrafts
https://ift.tt/3g5Kpxq
reddit
  
  Flutter Animated Cart Page
  Posted in r/FlutterDev by u/codecrafts • 2 points and 0 comments
  New post on Flutter Dev Google group:
Passing specific document (Object: Document Snapshot) to Details Page
Hi flutter community, I'm trying to pass a Document Snapshot to another view so I can display all its properties. I can declare and initialize the constructor for this Document Snapshot in the Details Page. However, when trying to pass this Document Snapshot, I get *Undefined name 'snapshot'.*
April 12, 2021 at 10:53PM by Andrew Villegas
https://ift.tt/3sd5iJx
  
  Passing specific document (Object: Document Snapshot) to Details Page
Hi flutter community, I'm trying to pass a Document Snapshot to another view so I can display all its properties. I can declare and initialize the constructor for this Document Snapshot in the Details Page. However, when trying to pass this Document Snapshot, I get *Undefined name 'snapshot'.*
April 12, 2021 at 10:53PM by Andrew Villegas
https://ift.tt/3sd5iJx
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.