New post on /r/flutterdev subreddit:
I Made An Open-Source Video Diary App - Download It Now!
Hey, Flutter Devs!I've been working on "One Second Diary" - a video diary app inspired by this TED Talk.The idea itself is pretty simple:Open the app at the moment of your day that you would like to remember in the futureTap the Record button and save the videoThat's it, open the app the next day and repeat the processThen, after a couple months or even years:Tap the button to generate a compilation of all those videos, creating the movie of your lifeIf you record 1 second everyday for the next 10 years, you will have a 1-hour video that summarizes all these years of your life.There are No-Ads and No Data is Collected.This is my first "complete" app made with Flutter, and it's under review on PlayStore, but you can already download the apk on GitHub.I would love to hear your feedback!Thank you!Source Code: https://github.com/KyleKun/one_second_diaryPs: it even comes with Dark Mode set as default ;)
April 13, 2021 at 02:00AM by kylekundev
https://ift.tt/3sc235f
I Made An Open-Source Video Diary App - Download It Now!
Hey, Flutter Devs!I've been working on "One Second Diary" - a video diary app inspired by this TED Talk.The idea itself is pretty simple:Open the app at the moment of your day that you would like to remember in the futureTap the Record button and save the videoThat's it, open the app the next day and repeat the processThen, after a couple months or even years:Tap the button to generate a compilation of all those videos, creating the movie of your lifeIf you record 1 second everyday for the next 10 years, you will have a 1-hour video that summarizes all these years of your life.There are No-Ads and No Data is Collected.This is my first "complete" app made with Flutter, and it's under review on PlayStore, but you can already download the apk on GitHub.I would love to hear your feedback!Thank you!Source Code: https://github.com/KyleKun/one_second_diaryPs: it even comes with Dark Mode set as default ;)
April 13, 2021 at 02:00AM by kylekundev
https://ift.tt/3sc235f
Ted
One second every day
There are so many tiny, beautiful, funny, tragic moments in your life -- how are you going to remember them all? Director Cesar Kuriyama shoots one second of video every day as part of an ongoing project to collect all the special bits of his life.
New post on Flutter Dev Google group:
Connection between SQL SERVER and FLUTTER
Can I connect sql server with flutter? Any one help me. I am using C#.Net and SQL SERVER for my current project. But my clients need android desktop or tab App with this SQL SERVER database. Is it possible?
April 13, 2021 at 03:47AM by Liyakathali K
https://ift.tt/32ctnFX
Connection between SQL SERVER and FLUTTER
Can I connect sql server with flutter? Any one help me. I am using C#.Net and SQL SERVER for my current project. But my clients need android desktop or tab App with this SQL SERVER database. Is it possible?
April 13, 2021 at 03:47AM by Liyakathali K
https://ift.tt/32ctnFX
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 Flutter Dev Google group:
Error installing flutter on linux
Hi I can't install flutter. I do it on console like this: ~$ sudo snap install flutter --classic [sudo] hasło użytkownika rafalk: flutter 0+git.e339663 from Flutter Team✓ installed ~$ flutter doctor Initializing Flutter cat: releases_linux.json: There is no such file or directory
April 13, 2021 at 08:12AM by Rafał Kaczmarczyk
https://ift.tt/3e1SgcX
Error installing flutter on linux
Hi I can't install flutter. I do it on console like this: ~$ sudo snap install flutter --classic [sudo] hasło użytkownika rafalk: flutter 0+git.e339663 from Flutter Team✓ installed ~$ flutter doctor Initializing Flutter cat: releases_linux.json: There is no such file or directory
April 13, 2021 at 08:12AM by Rafał Kaczmarczyk
https://ift.tt/3e1SgcX
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 Flutter Dev Google group:
Documentation error, 2 time of webdriver core error, in documentation
https://ift.tt/2Qi7u5t 2 time of webdriver co
Documentation error, 2 time of webdriver core error, in documentation
https://ift.tt/2Qi7u5t 2 time of webdriver co
api.flutter.dev
webdriver.html library - Dart API
webdriver.html library API docs, for the Dart programming language.
New post on Flutter Dev Google group:
Webdriver. io and webdriver.core is repeated 2 time in documentation . just check it
check it
Webdriver. io and webdriver.core is repeated 2 time in documentation . just check it
check it
New post on /r/flutterdev subreddit:
Flutter & Brave: Test your Web Apps on your favorite browser
https://ift.tt/3g1TLdP
April 13, 2021 at 08:39AM by cheerfulboy
https://ift.tt/3sdgfLh
Flutter & Brave: Test your Web Apps on your favorite browser
https://ift.tt/3g1TLdP
April 13, 2021 at 08:39AM by cheerfulboy
https://ift.tt/3sdgfLh
Flutter and Other Experiments
Flutter & Brave: test your Web Apps on your favorite browser
Hi everyone in my last series on Flutter I show you all the announcements made by the Flutter team and now I want to show you how you can use Brave as a browser to test your Flutter Apps on the Web.
Problem & Solution
To test your Flutter apps on the...
Problem & Solution
To test your Flutter apps on the...
New post on /r/flutterdev subreddit:
PROPER Flutter Error Reporting
This is an extension of this post by u/submergedmoleIn light of that post it seems in Crashlytics there is no way to implement proper Error handling.Because to catch all errors, there must be a few thingsFlutterError.onError callback must be assigned.runApp() must be called inside runZoneGuarded.WidgetsFlutterBinding.ensureInitialized() must be the first thing called INSIDE runZoneGuardedBut if we try to implement Crashlytics the following way:
April 13, 2021 at 10:26AM by ElongatedMuskett
https://ift.tt/3tjrXoY
PROPER Flutter Error Reporting
This is an extension of this post by u/submergedmoleIn light of that post it seems in Crashlytics there is no way to implement proper Error handling.Because to catch all errors, there must be a few thingsFlutterError.onError callback must be assigned.runApp() must be called inside runZoneGuarded.WidgetsFlutterBinding.ensureInitialized() must be the first thing called INSIDE runZoneGuardedBut if we try to implement Crashlytics the following way:
void main() { runZonedGuarded<Future<void>>(() async { WidgetsFlutterBinding.ensureInitialized(); await Firebase.initializeApp(); FlutterError.onError = FirebaseCrashlytics.instance.recordFlutterError; runApp(CrashyApp()); }, (error, stackTrace) => FirebaseCrashlytics.instance.recordError) }Few problems occur:In case any FlutterError occurs before onError is set it won't be caughtIn case any async error occurs after entering runZoneGuarded but before Firebase.initializeApp() calling FirebaseCrashlytics.instance will crash again. (combo x2)
April 13, 2021 at 10:26AM by ElongatedMuskett
https://ift.tt/3tjrXoY
reddit
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...
New post on Flutter Dev Google group:
App is not available for any of my TV devices
My TV is not available for any of my devices on Google Play. I'm getting the message that it is not compatible on any of my devices despite having been using the same devices to debug. I have set all the features and metas required for the app to be available to TV devices as shown below:
April 13, 2021 at 11:16AM by Paul Mutondo
https://ift.tt/3wTxogH
App is not available for any of my TV devices
My TV is not available for any of my devices on Google Play. I'm getting the message that it is not compatible on any of my devices despite having been using the same devices to debug. I have set all the features and metas required for the app to be available to TV devices as shown below:
April 13, 2021 at 11:16AM by Paul Mutondo
https://ift.tt/3wTxogH
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:
Learn how to build Video Calling App using Flutter and WebRTC
https://ift.tt/3san4gD
April 13, 2021 at 11:09AM by JasonWills343
https://ift.tt/3g8157E
Learn how to build Video Calling App using Flutter and WebRTC
https://ift.tt/3san4gD
April 13, 2021 at 11:09AM by JasonWills343
https://ift.tt/3g8157E
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:
What do you want to achieve as an app developer?
What is motivates you to learn (or) grow as a developer?View Poll
April 13, 2021 at 01:21PM by codesundar
https://ift.tt/2PWQTEc
What do you want to achieve as an app developer?
What is motivates you to learn (or) grow as a developer?View Poll
April 13, 2021 at 01:21PM by codesundar
https://ift.tt/2PWQTEc
New post on /r/flutterdev subreddit:
Get E-commerce REST APIs at price of a PIZZA | $7 | Learn E-commerce app development
https://youtu.be/YdZFAeNOxlU
April 13, 2021 at 03:01PM by saheb1313
https://ift.tt/3tdDhCY
Get E-commerce REST APIs at price of a PIZZA | $7 | Learn E-commerce app development
https://youtu.be/YdZFAeNOxlU
April 13, 2021 at 03:01PM by saheb1313
https://ift.tt/3tdDhCY
YouTube
Get E-commerce REST APIs at price of a PIZZA | Learn E-commerce app development
#API #Ecommerce
https://api.thegrowingdeveloper.org
For Documentation
https://dev.thegrowingdeveloper.org
Get Access to over 20 Routes which includes product, user signup, cart, Wishlist and much more and that too at price of a PIZZA
Get started with…
https://api.thegrowingdeveloper.org
For Documentation
https://dev.thegrowingdeveloper.org
Get Access to over 20 Routes which includes product, user signup, cart, Wishlist and much more and that too at price of a PIZZA
Get started with…
New post on /r/flutterdev subreddit:
Advices on how to prevent iOS first launch jank
Hi, I am creating this thread so we can share advices on how to prevent the iOS jank on first launches caused by the Metal shader. May be there are some animations that work better than others are they are simpler. What's been your experience regards this topic?
April 13, 2021 at 02:56PM by Rahuvich
https://ift.tt/3tgRoaC
Advices on how to prevent iOS first launch jank
Hi, I am creating this thread so we can share advices on how to prevent the iOS jank on first launches caused by the Metal shader. May be there are some animations that work better than others are they are simpler. What's been your experience regards this topic?
April 13, 2021 at 02:56PM by Rahuvich
https://ift.tt/3tgRoaC
reddit
Advices on how to prevent iOS first launch jank
Hi, I am creating this thread so we can share advices on how to prevent the iOS jank on first launches caused by the Metal shader. May be there...
New post on /r/flutterdev subreddit:
1. Auth views : Flutter Ecommerce App With Admin Panel And Backend
https://youtu.be/mPvfsP8wSmM
April 13, 2021 at 02:40PM by realappdev
https://ift.tt/2Q2E0bI
1. Auth views : Flutter Ecommerce App With Admin Panel And Backend
https://youtu.be/mPvfsP8wSmM
April 13, 2021 at 02:40PM by realappdev
https://ift.tt/2Q2E0bI
YouTube
1.Auth View - Flutter Ecommerce App With Backend And Admin Panel | Flutter Ecommerce App NodeJS
Watch the login view of Flutter Ecommerce App With Backend where I discuss Flutter Ecommerce App With Backend with Nodejs and Flutter Ecommerce App With Backend with admin panel. Flutter Ecommerce App With Backend and admin panel and Flutter Ecommerce App…
New post on /r/flutterdev subreddit:
Simple yet very powerful package to supercharge your Flutter App
https://youtu.be/KJQKY5p8cYg
April 13, 2021 at 03:19PM by lohanidamodar
https://ift.tt/3dXMgSp
Simple yet very powerful package to supercharge your Flutter App
https://youtu.be/KJQKY5p8cYg
April 13, 2021 at 03:19PM by lohanidamodar
https://ift.tt/3dXMgSp
YouTube
Flutter Plugins - Flutter Slidable Package
Learn to use flutter_slidable package (https://pub.dev/packages/flutter_slidable) to provide slidable actions to your user.
_______________________________________________
♥ Become a Patreon supporter: https://www.patreon.com/join/ReactBits
____________…
_______________________________________________
♥ Become a Patreon supporter: https://www.patreon.com/join/ReactBits
____________…
New post on /r/flutterdev subreddit:
Ep. 020 - size() | Flutter Processing
https://www.youtube.com/watch?v=2c_yAgyiReU
April 13, 2021 at 06:03PM by MarkOSullivan
https://ift.tt/3teLQO5
Ep. 020 - size() | Flutter Processing
https://www.youtube.com/watch?v=2c_yAgyiReU
April 13, 2021 at 06:03PM by MarkOSullivan
https://ift.tt/3teLQO5
YouTube
Ep. 020 - size() | Flutter Processing
Today, we implement control over canvas size in flutter_processing.
https://github.com/matthew-carroll/flutter_processing
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com
Flutter Training:…
https://github.com/matthew-carroll/flutter_processing
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com
Flutter Training:…
New tweet from FlutterDev:
Let's understand sliver List & Grid to scroll widgets efficiently & provide a seamless user experience! 🎉💙
"Scroll your widgets efficiently" by Dhruva Shastri(@dhruvashastri12) ⚡️
at #FlutteristasConf2021 🤩💙
Register now! https://t.co/ZlxUXBnRzh#flutteristas pic.twitter.com/wK3KhD291a— Flutteristas Conference (@FlutteristasCon) April 8, 2021
April 13, 2021 at 05:59PM
http://twitter.com/FlutterDev/status/1382000593951154180
Let's understand sliver List & Grid to scroll widgets efficiently & provide a seamless user experience! 🎉💙
"Scroll your widgets efficiently" by Dhruva Shastri(@dhruvashastri12) ⚡️
at #FlutteristasConf2021 🤩💙
Register now! https://t.co/ZlxUXBnRzh#flutteristas pic.twitter.com/wK3KhD291a— Flutteristas Conference (@FlutteristasCon) April 8, 2021
April 13, 2021 at 05:59PM
http://twitter.com/FlutterDev/status/1382000593951154180
Twitter
Dhruva 🏡💙 #IWD2021 #IWDIndia2021 (@dhruvashastri12) | Twitter
The latest Tweets from Dhruva 🏡💙 #IWD2021 #IWDIndia2021 (@dhruvashastri12). Spin Doctor @3_Sided_Coin| prev @codemagicio| Ambassador @WTMAhmedabad | #IamRemarkable🏅 Facilitator| #Flutter enthusiast 🐦| She/ Her 🙋|Views are own|. Ahmedabad
New post on /r/flutterdev subreddit:
Flutter demo audioplayers on background via audio_service
In this article i will show you how to use audio_players with audio_service.If you find it use full please give me some clapshttps://denis-korovitskii.medium.com/flutter-demo-audioplayers-on-background-via-audio-service-c95d65c90ae1
April 13, 2021 at 07:36PM by beerline
https://ift.tt/3uMNmal
Flutter demo audioplayers on background via audio_service
In this article i will show you how to use audio_players with audio_service.If you find it use full please give me some clapshttps://denis-korovitskii.medium.com/flutter-demo-audioplayers-on-background-via-audio-service-c95d65c90ae1
April 13, 2021 at 07:36PM by beerline
https://ift.tt/3uMNmal
Dart packages
audioplayers | Flutter package
A Flutter plugin to play multiple audio files simultaneously
New post on /r/flutterdev subreddit:
Flutter 2.0 - Payments with Paypal
https://youtu.be/E05uXmUh9t4
April 13, 2021 at 07:07PM by rajayogan27
https://ift.tt/3a4i5ry
Flutter 2.0 - Payments with Paypal
https://youtu.be/E05uXmUh9t4
April 13, 2021 at 07:07PM by rajayogan27
https://ift.tt/3a4i5ry
YouTube
Flutter 2.0 - Payments with Paypal
Need an app ? - https://rajayogan.me
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw-EMsLf8TmsYhKOCx2ALZiKi
Music credit:
Finally by Loxbeats https://soundcloud.com/loxbeats…
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw-EMsLf8TmsYhKOCx2ALZiKi
Music credit:
Finally by Loxbeats https://soundcloud.com/loxbeats…
New post on /r/flutterdev subreddit:
Flutter Tutorial - Drag & Select Items In GridView (Johannes Milke)
https://www.youtube.com/watch?v=DozNBmc79L4
April 13, 2021 at 08:31PM by JohannesMilke
https://ift.tt/3wRlIuI
Flutter Tutorial - Drag & Select Items In GridView (Johannes Milke)
https://www.youtube.com/watch?v=DozNBmc79L4
April 13, 2021 at 08:31PM by JohannesMilke
https://ift.tt/3wRlIuI
YouTube
Flutter Tutorial - Drag & Select Items In GridView
Create a Flutter Gridview that supports both dragging and selecting items in Flutter.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
Source Code | https://github.com/JohannesMilke/drag_select_gridview_example…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
Source Code | https://github.com/JohannesMilke/drag_select_gridview_example…
New tweet from FlutterDev:
We cannot imagine anything without animations and users are more attracted when they see them in the app. 🤩
To dive into animations, don't miss "Animate With Flutter" by Khushbu Thakker(@KhushbuThakker) 💙🎉
at #FlutteristasConf2021🤩
Register now! https://t.co/ZlxUXB6gHJ pic.twitter.com/3ZhYunauIR— Flutteristas Conference (@FlutteristasCon) April 8, 2021
April 13, 2021 at 09:00PM
http://twitter.com/FlutterDev/status/1382045927893037056
We cannot imagine anything without animations and users are more attracted when they see them in the app. 🤩
To dive into animations, don't miss "Animate With Flutter" by Khushbu Thakker(@KhushbuThakker) 💙🎉
at #FlutteristasConf2021🤩
Register now! https://t.co/ZlxUXB6gHJ pic.twitter.com/3ZhYunauIR— Flutteristas Conference (@FlutteristasCon) April 8, 2021
April 13, 2021 at 09:00PM
http://twitter.com/FlutterDev/status/1382045927893037056
Twitter
khushbu🏘️💙 (@KhushbuThakker) | Twitter
The latest Tweets from khushbu🏘️💙 (@KhushbuThakker). #PassionateAndroidDeveloper
#FlutterExplorer
#LearningaNewTechnologies.
#TechnologyLover
#loveToDance
#androidDev
#codingLife
☺️☺️☺️. Ahmadabad City, India
#FlutterExplorer
#LearningaNewTechnologies.
#TechnologyLover
#loveToDance
#androidDev
#codingLife
☺️☺️☺️. Ahmadabad City, India
New post on /r/flutterdev subreddit:
Ep. 020 - size() | Flutter Processing
https://youtube.com/watch?v=2c_yAgyiReU&feature=share
April 13, 2021 at 09:37PM by Pixelreddit
https://ift.tt/3uOhuSG
Ep. 020 - size() | Flutter Processing
https://youtube.com/watch?v=2c_yAgyiReU&feature=share
April 13, 2021 at 09:37PM by Pixelreddit
https://ift.tt/3uOhuSG
YouTube
Ep. 020 - size() | Flutter Processing
Today, we implement control over canvas size in flutter_processing.
https://github.com/matthew-carroll/flutter_processing
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com
Flutter Training:…
https://github.com/matthew-carroll/flutter_processing
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com
Flutter Training:…