New post on /r/flutterdev subreddit:
Distributed Chat App
Hey, I need some help with my distributed Chat application I am building with Flutter.I was wondering what the best approach would be in creating this app. I have 2 possible answers, both build in IPFS. OrbitDB and Textile.io. I love the concept and would like to use it.Now, both libraries are build in Javascript. Textile.io does have a dart library but it is to limited because it needs to connect to a external daemon running go, which defeats the purpose of my app.Is it perhaps possible to use the JS libraries inside of my Flutter app without to much trouble? Or perhaps use the Go daemon inside the app, so the dart library can connect to it if that is possible?Thanks in advance.
July 26, 2020 at 02:48PM by D_a_a_n
https://ift.tt/32UglOL
Distributed Chat App
Hey, I need some help with my distributed Chat application I am building with Flutter.I was wondering what the best approach would be in creating this app. I have 2 possible answers, both build in IPFS. OrbitDB and Textile.io. I love the concept and would like to use it.Now, both libraries are build in Javascript. Textile.io does have a dart library but it is to limited because it needs to connect to a external daemon running go, which defeats the purpose of my app.Is it perhaps possible to use the JS libraries inside of my Flutter app without to much trouble? Or perhaps use the Go daemon inside the app, so the dart library can connect to it if that is possible?Thanks in advance.
July 26, 2020 at 02:48PM by D_a_a_n
https://ift.tt/32UglOL
reddit
[deleted by user]
A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
Translation of documentation into Russian
Hello, I would like to improve and develop the Flutter developer community in Russia and neighboring countries. But there are some problems with the correct translation of the official documentation. I would like to know if I can count on help in localizing the official documentation? The site is
July 26, 2020 at 03:18PM by Федор Николенко
https://ift.tt/2Dcjhve
Translation of documentation into Russian
Hello, I would like to improve and develop the Flutter developer community in Russia and neighboring countries. But there are some problems with the correct translation of the official documentation. I would like to know if I can count on help in localizing the official documentation? The site is
July 26, 2020 at 03:18PM by Федор Николенко
https://ift.tt/2Dcjhve
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:
Arduino + Nairda Robot Programming #madeWithFlutter
Program and control your arduino projects direct from your smartphone with Nairda !! www.nairda.com.mxhttps://www.youtube.com/watch?v=eCGN3rD5FMA
July 26, 2020 at 04:35PM by Adriandroid_
https://ift.tt/3hE8dWR
Arduino + Nairda Robot Programming #madeWithFlutter
Program and control your arduino projects direct from your smartphone with Nairda !! www.nairda.com.mxhttps://www.youtube.com/watch?v=eCGN3rD5FMA
July 26, 2020 at 04:35PM by Adriandroid_
https://ift.tt/3hE8dWR
New post on /r/flutterdev subreddit:
HoverCard, HoverEffect
https://youtu.be/zSjImzIsCXs
July 26, 2020 at 04:31PM by TheTechDesigner
https://ift.tt/332NCHw
HoverCard, HoverEffect
https://youtu.be/zSjImzIsCXs
July 26, 2020 at 04:31PM by TheTechDesigner
https://ift.tt/332NCHw
YouTube
Flutter Widget | 85 | Hover Card [ Hover Effect] Useful Widget in Flutter App | Speed Code
#TheTechDesigner#Flutter #FlutterUI #SpeedCode #FlutterTutorial #FlutterAnimation #FlutterWidgets ━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━ Topics Covered :- ━ ━ ...
New post on Flutter Dev Google group:
Gradle task assembleRelease failed with exit code 1
How to Fix these error i try many things but it always show this error Target kernel_snapshot failed: Exception: Errors during snapshot creation: null build failed. FAILURE: Build failed with an exception. * Where: Script 'C:\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 882 *
July 26, 2020 at 04:12PM by Nitrate Rai
https://ift.tt/2BuFnbY
Gradle task assembleRelease failed with exit code 1
How to Fix these error i try many things but it always show this error Target kernel_snapshot failed: Exception: Errors during snapshot creation: null build failed. FAILURE: Build failed with an exception. * Where: Script 'C:\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 882 *
July 26, 2020 at 04:12PM by Nitrate Rai
https://ift.tt/2BuFnbY
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:
Freshly Made Flutter Tutorial
https://www.youtube.com/watch?v=x_bIhtlgWJE
July 26, 2020 at 05:13PM by Twistbase
https://ift.tt/3303Ukz
Freshly Made Flutter Tutorial
https://www.youtube.com/watch?v=x_bIhtlgWJE
July 26, 2020 at 05:13PM by Twistbase
https://ift.tt/3303Ukz
YouTube
Artifical Insight - Cupertino 2020 Hack Submission
Hello!Check out the rest of the project at https://devpost.com/software/artificial-insightCheck out my other projects at https://moonsdontburn.design/#/App m...
New post on /r/flutterdev subreddit:
Classes fields for UI
I have classes for lists and they have some fields like int id, Duration time etc... I am fetching all the data when the app is loaded and use it throughout the app lifetime (singleton). In some screens I need extra data for UI, this data is created with the class fields. Lets say I have functions like getSomeString(time) And than I use that string for display. My question is should I place this in a field inside the class and "Infect" it (but then I will call the getSomeString (and others) once when I fetch data) Or call these methods when loading new screens with the passed class instance. I tend towards keeping the structure a singleton and I want to know if there is a best practice in flutter instead of just infecting classes with fields for UI like strings and icons that are needed for some screens.
July 26, 2020 at 05:06PM by Shade-73
https://ift.tt/3eYsi8J
Classes fields for UI
I have classes for lists and they have some fields like int id, Duration time etc... I am fetching all the data when the app is loaded and use it throughout the app lifetime (singleton). In some screens I need extra data for UI, this data is created with the class fields. Lets say I have functions like getSomeString(time) And than I use that string for display. My question is should I place this in a field inside the class and "Infect" it (but then I will call the getSomeString (and others) once when I fetch data) Or call these methods when loading new screens with the passed class instance. I tend towards keeping the structure a singleton and I want to know if there is a best practice in flutter instead of just infecting classes with fields for UI like strings and icons that are needed for some screens.
July 26, 2020 at 05:06PM by Shade-73
https://ift.tt/3eYsi8J
reddit
Classes fields for UI
I have classes for lists and they have some fields like int id, Duration time etc... I am fetching all the data when the app is loaded and use it...
New post on /r/flutterdev subreddit:
Freshly Made Flutter Tutorial
https://www.youtube.com/watch?v=RZMqaHSs6CM
July 26, 2020 at 05:11PM by Twistbase
https://ift.tt/30PsL7T
Freshly Made Flutter Tutorial
https://www.youtube.com/watch?v=RZMqaHSs6CM
July 26, 2020 at 05:11PM by Twistbase
https://ift.tt/30PsL7T
YouTube
Flutter - Custom Zoomable Floorplan
This tutorial teaches you how to create your own custom gesture detector in order to zoom and pan at the same time. Watch the intro for the App Demo.
Download the starter and final project here:
https://github.com/gdrtrts/custom-zoomable-floorplan
Looking…
Download the starter and final project here:
https://github.com/gdrtrts/custom-zoomable-floorplan
Looking…
New post on /r/flutterdev subreddit:
Flutter Language Translation📱
https://youtu.be/iYtzE0C4WE4
July 26, 2020 at 01:46PM by maherban530
https://ift.tt/32ZcjVo
Flutter Language Translation📱
https://youtu.be/iYtzE0C4WE4
July 26, 2020 at 01:46PM by maherban530
https://ift.tt/32ZcjVo
YouTube
Language Translate(Flutter 7)Google Translation
WELCOME
create Widget, UI, Animation etc using Dart for Application.
SUBSCRIBE & SHARE
THANKS FOR WATCHING
create Widget, UI, Animation etc using Dart for Application.
SUBSCRIBE & SHARE
THANKS FOR WATCHING
New post on /r/flutterdev subreddit:
If Dart with flutter is your first step into programming...
How far in are you right now? And Did you have little to no knowledge of HTML & CSS, mention not JS?
July 25, 2020 at 07:43PM by addnvrafk
https://ift.tt/2WZ6pQh
If Dart with flutter is your first step into programming...
How far in are you right now? And Did you have little to no knowledge of HTML & CSS, mention not JS?
July 25, 2020 at 07:43PM by addnvrafk
https://ift.tt/2WZ6pQh
reddit
If Dart with flutter is your first step into programming...
How far in are you right now? And Did you have little to no knowledge of HTML & CSS, mention not JS?
New post on /r/flutterdev subreddit:
Flutter Bottom Appbar
https://youtu.be/BTrNnHLCq-4
July 25, 2020 at 05:32PM by maherban530
https://ift.tt/3f3Dxg7
Flutter Bottom Appbar
https://youtu.be/BTrNnHLCq-4
July 25, 2020 at 05:32PM by maherban530
https://ift.tt/3f3Dxg7
YouTube
Flutter |1| Bottom AppBar, Bottom NavigationBar
WELCOME
create Widget, UI, Bottom AppBar using Dart for Application.
SUBSCRIBE & SHARE
THANKS FOR WATCHING
create Widget, UI, Bottom AppBar using Dart for Application.
SUBSCRIBE & SHARE
THANKS FOR WATCHING
New post on /r/flutterdev subreddit:
Dart `late` keyword deep dive: Why there are 2 Kinds of Late in Dart
https://twitter.com/creativemaybeno/status/1287434059141054464?s=20
July 26, 2020 at 07:06PM by creativemaybeno
https://ift.tt/3jGjTtT
Dart `late` keyword deep dive: Why there are 2 Kinds of Late in Dart
https://twitter.com/creativemaybeno/status/1287434059141054464?s=20
July 26, 2020 at 07:06PM by creativemaybeno
https://ift.tt/3jGjTtT
Twitter
creativecreatorormaybenot
The new `late` #Dart keyword is crazy 🤯 It will change a lot in #Flutter in the future 🚀 I published a video explaining that and why there are 2 different kinds of the late modifier in Dart with *null safety* 🙌🏽 You can watch it here; hope it helps 😃 htt…
New post on /r/flutterdev subreddit:
Your performance profiling device
What device do you use as a reference for performance profiling? Do you verify whether your app runs smoothly on the slowest phone that could be used or is it acceptable for you that the app drops frames on older and cheaper devices (e.g. because of some complex stuff going on on the screen)?
July 26, 2020 at 06:50PM by tomwyr
https://ift.tt/30LEFQp
Your performance profiling device
What device do you use as a reference for performance profiling? Do you verify whether your app runs smoothly on the slowest phone that could be used or is it acceptable for you that the app drops frames on older and cheaper devices (e.g. because of some complex stuff going on on the screen)?
July 26, 2020 at 06:50PM by tomwyr
https://ift.tt/30LEFQp
reddit
Your performance profiling device
What device do you use as a reference for performance profiling? Do you verify whether your app runs smoothly on the slowest phone that could be...
New post on /r/flutterdev subreddit:
RegEx free, RFC compliant email validation for your Flutter app
/r/dartlang/comments/hwc6au/email_validatordart_a_simple_but_correct_email/
July 26, 2020 at 07:40PM by fredeil
https://ift.tt/3jFMPlS
RegEx free, RFC compliant email validation for your Flutter app
/r/dartlang/comments/hwc6au/email_validatordart_a_simple_but_correct_email/
July 26, 2020 at 07:40PM by fredeil
https://ift.tt/3jFMPlS
reddit
RegEx free, RFC compliant email validation for your Flutter app
Posted in r/FlutterDev by u/fredeil • 7 points and 0 comments
New post on /r/flutterdev subreddit:
https://www.youtube.com/watch?v=fhYHgJAw48c
https://www.youtube.com/watch?v=fhYHgJAw48c
July 26, 2020 at 08:32PM by HystericalAccounting
https://ift.tt/30IJcTC
https://www.youtube.com/watch?v=fhYHgJAw48c
https://www.youtube.com/watch?v=fhYHgJAw48c
July 26, 2020 at 08:32PM by HystericalAccounting
https://ift.tt/30IJcTC
YouTube
TETRIS • FLUTTER TUTORIAL
🔥📱 My Habit Tracker: https://ritualz.app
💳📱 My Expense Tracker: https://dollatracker.app
🥷🏽 FOLLOW ME
Patreon: https://www.patreon.com/mitchkoko/
Instagram: https://instagram.com/createdbykoko/
Twitter: https://twitter.com/createdbykoko/
TikTok: https:/…
💳📱 My Expense Tracker: https://dollatracker.app
🥷🏽 FOLLOW ME
Patreon: https://www.patreon.com/mitchkoko/
Instagram: https://instagram.com/createdbykoko/
Twitter: https://twitter.com/createdbykoko/
TikTok: https:/…
New post on /r/flutterdev subreddit:
Package release automation. Changelog updates, version bumps
https://ift.tt/30RwuSn
July 26, 2020 at 09:09PM by f3ath
https://ift.tt/39sl7V9
Package release automation. Changelog updates, version bumps
https://ift.tt/30RwuSn
July 26, 2020 at 09:09PM by f3ath
https://ift.tt/39sl7V9
reddit
Package release automation. Changelog updates, version bumps.
Posted in r/dartlang by u/f3ath • 3 points and 0 comments
New post on /r/flutterdev subreddit:
FLUTTER WEB - Tried Building a Portfolio Website
Tried Flutter Web to set up a simple Portfolio Website, the mobile view hasn't been completed yet, but the Desktop view is deployed. Check it out https://threshold-6dc8f.web.app/#/landing
July 27, 2020 at 12:29AM by rushilrai
https://ift.tt/3020aNN
FLUTTER WEB - Tried Building a Portfolio Website
Tried Flutter Web to set up a simple Portfolio Website, the mobile view hasn't been completed yet, but the Desktop view is deployed. Check it out https://threshold-6dc8f.web.app/#/landing
July 27, 2020 at 12:29AM by rushilrai
https://ift.tt/3020aNN
New post on /r/flutterdev subreddit:
Last and most advanced part of Making Platform Specific UI (Material x Cupertino) with tons of source code
https://ift.tt/2X0nOYT
July 27, 2020 at 02:31AM by Deimantasa
https://ift.tt/306yMOJ
Last and most advanced part of Making Platform Specific UI (Material x Cupertino) with tons of source code
https://ift.tt/2X0nOYT
July 27, 2020 at 02:31AM by Deimantasa
https://ift.tt/306yMOJ
Medium
P3. Flutter — Making Platform Specific UI Mobile Application (Android with Material, iOS with…
This is continuation from my previous article about flutter and material with cupertino widgets.
New post on /r/flutterdev subreddit:
Getting an Apple developer ID
I understand this is not a flutter specific issue.I've been working on my app for a couple of months and last night I was looking to add push notification via firebase messaging. Based on the documentation it said that I need to get an apple developer id information.When I logged into developer.apple.com I noticed that I'm actually not in the developer program, so I decided to enroll into the program. I got to the section where it had asked me to select the entity, which I selected as individual/soletrader. I was then presented with the message that "Your enrollment in the Apple Developer Program could not be completed at this time".I contacted apple support first thing this morning, the person on the other end explained that they are seeing the same message on their end and there was no resolution to this, and it is the 'end of the line' and theres nothing else that can be done about it. They were not able to provide a reasoning, and they said according to their guidelines the support ends with no possibility of escalation or resolution.While I was speaking to them, I tried to enroll my partner's details on a seperate laptop and I received the same message, and I had asked a friend to register and they said that they're receiving the same error. I advised the support person of my actions, and they had advised theres nothing they can do.Has anyone faced this type of challenge, and how did you get it resolved. I'm feeling like I'm stuck with no avenues for resolution.
July 27, 2020 at 03:34AM by ifndefx
https://ift.tt/2OW4qrt
Getting an Apple developer ID
I understand this is not a flutter specific issue.I've been working on my app for a couple of months and last night I was looking to add push notification via firebase messaging. Based on the documentation it said that I need to get an apple developer id information.When I logged into developer.apple.com I noticed that I'm actually not in the developer program, so I decided to enroll into the program. I got to the section where it had asked me to select the entity, which I selected as individual/soletrader. I was then presented with the message that "Your enrollment in the Apple Developer Program could not be completed at this time".I contacted apple support first thing this morning, the person on the other end explained that they are seeing the same message on their end and there was no resolution to this, and it is the 'end of the line' and theres nothing else that can be done about it. They were not able to provide a reasoning, and they said according to their guidelines the support ends with no possibility of escalation or resolution.While I was speaking to them, I tried to enroll my partner's details on a seperate laptop and I received the same message, and I had asked a friend to register and they said that they're receiving the same error. I advised the support person of my actions, and they had advised theres nothing they can do.Has anyone faced this type of challenge, and how did you get it resolved. I'm feeling like I'm stuck with no avenues for resolution.
July 27, 2020 at 03:34AM by ifndefx
https://ift.tt/2OW4qrt
reddit
Getting an Apple developer ID
I understand this is not a flutter specific issue. I've been working on my app for a couple of months and last night I was looking to add push...
New post on /r/flutterdev subreddit:
Up and Running with Flutter on Pixelbook [2020]
Flutter is available for Windows, macOS, and Linux. The author is using a Google Pixelbook, which means ChromeOS+Linux. Because of the cross-platform nature of Flutter, we are now able to build cross-platform applications for those systems.--> Article <--
July 27, 2020 at 10:11AM by Fewthp
https://ift.tt/3f3XovJ
Up and Running with Flutter on Pixelbook [2020]
Flutter is available for Windows, macOS, and Linux. The author is using a Google Pixelbook, which means ChromeOS+Linux. Because of the cross-platform nature of Flutter, we are now able to build cross-platform applications for those systems.--> Article <--
July 27, 2020 at 10:11AM by Fewthp
https://ift.tt/3f3XovJ
Medium
Up and Running with Flutter on Pixelbook [2020]
Flutter is around for a while by now and it demonstrated that iOS and Android apps can be developed together fast and efficiently. I had…
New post on Flutter Dev Google group:
Firebase Auth: Default timeout of 3 minutes too long (Issue from AppStore Review)
Hi, I'm just trying to get a Flutter app released on the app store and am using the Firebase Auth plugin. One of the issues that came back from the review was, that the app seems to be hanging during sign-in or registering a new user. After my investigation, I stumbled over the case when the
July 27, 2020 at 10:40AM by Joerg
https://ift.tt/3f2Ti6Q
Firebase Auth: Default timeout of 3 minutes too long (Issue from AppStore Review)
Hi, I'm just trying to get a Flutter app released on the app store and am using the Firebase Auth plugin. One of the issues that came back from the review was, that the app seems to be hanging during sign-in or registering a new user. After my investigation, I stumbled over the case when the
July 27, 2020 at 10:40AM by Joerg
https://ift.tt/3f2Ti6Q
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.