New post on /r/flutterdev subreddit:
DartPad pub support coming!
One of the Googler's that I follow their GitHub stuff posted this last night on this issue:RedBrogdon commented 12 hours agoHey, everybody. There's clearly a bunch of interest in this issue, so let me give y'all an update.As you can see, we've had package support on our feature wish list for a while now, and over the last few months we've finally been able to allocate resources to implementing it. This isn't an easy process, since package support brings with it a number of concerns (security being one noteworthy example). As a result, it's something we have to be very careful about rolling out correctly.That said, we're making good progress, and over the next couple months, we plan to deploy support for Dart and Flutter packages. This will start with a few Firebase services as well as packages created by the team at Google, then expand to include popular packages from the wider community. An allowlist will be used to gate which ones are available, and you can expect things to move on and off of that list over time as packages rise and fall in usage.While I'm here, this seems like a great time to remind everybody of the three main tenets of Dart's code of conduct:Respect people, their identities, their culture, and their work.Be kind. Be courteous. Be welcoming.Listen. Consider and acknowledge people's points before responding.This is an open source project, which means its success depends on our ability to work together. Those three things are a big part of how we do that.https://github.com/dart-lang/dart-pad/issues/901Its real folks, pub support in dartpad in a few month's time!
June 11, 2021 at 01:14PM by fredgrott
https://ift.tt/3guv3Bc
DartPad pub support coming!
One of the Googler's that I follow their GitHub stuff posted this last night on this issue:RedBrogdon commented 12 hours agoHey, everybody. There's clearly a bunch of interest in this issue, so let me give y'all an update.As you can see, we've had package support on our feature wish list for a while now, and over the last few months we've finally been able to allocate resources to implementing it. This isn't an easy process, since package support brings with it a number of concerns (security being one noteworthy example). As a result, it's something we have to be very careful about rolling out correctly.That said, we're making good progress, and over the next couple months, we plan to deploy support for Dart and Flutter packages. This will start with a few Firebase services as well as packages created by the team at Google, then expand to include popular packages from the wider community. An allowlist will be used to gate which ones are available, and you can expect things to move on and off of that list over time as packages rise and fall in usage.While I'm here, this seems like a great time to remind everybody of the three main tenets of Dart's code of conduct:Respect people, their identities, their culture, and their work.Be kind. Be courteous. Be welcoming.Listen. Consider and acknowledge people's points before responding.This is an open source project, which means its success depends on our ability to work together. Those three things are a big part of how we do that.https://github.com/dart-lang/dart-pad/issues/901Its real folks, pub support in dartpad in a few month's time!
June 11, 2021 at 01:14PM by fredgrott
https://ift.tt/3guv3Bc
GitHub
RedBrogdon - Overview
I lead the developer relations team for Dart and Flutter. 💙 - RedBrogdon
New post on /r/flutterdev subreddit:
App Feedback Thread - June 11, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
June 11, 2021 at 03:00PM by AutoModerator
https://ift.tt/2RKVsm9
App Feedback Thread - June 11, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
June 11, 2021 at 03:00PM by AutoModerator
https://ift.tt/2RKVsm9
Reddit
r/FlutterDev on Reddit: App Feedback Thread - June 11, 2021
Posted by u/AutoModerator - 2 votes and 3 comments
New post on /r/flutterdev subreddit:
Flutter Digital Clock (Desktop)
https://youtu.be/M_Fkz6YxPTg
June 11, 2021 at 03:52PM by SIVARAM16
https://ift.tt/2TmWB3P
Flutter Digital Clock (Desktop)
https://youtu.be/M_Fkz6YxPTg
June 11, 2021 at 03:52PM by SIVARAM16
https://ift.tt/2TmWB3P
YouTube
Flutter Digital Clock in 3 Minutes | Random Video
In this video, I've shown how to create a digital clock in a flutter.
Source Code: https://github.com/ThalapathySiva/Digital-Clock
#flutter #google #randomvideo #developer #tutorial #education
Source Code: https://github.com/ThalapathySiva/Digital-Clock
#flutter #google #randomvideo #developer #tutorial #education
New post on /r/flutterdev subreddit:
Implications of assets being user data
I am making an iOS app that uses assets to store audio files. I setup TestFlight to do testing. I discovered I had a bad audio file, so replaced it and deployed a new build. The changed file did not show up after the update in TestFlight. This is because assets are user data and app updates preserve user data. I had to delete the app and reinstall it to get the new asset.So any update to an app that modifies an existing asset must include code to detect the update and then overwrite the asset with a new version.While learning this I discovered I am using a package that has image assets. So this means that if I update an app that uses a later version of a package that has changed assets, those changes will not be seen in the update. Thus, any app update requires special vigilance to determine what all the assets are and if any have been modified. Then code must be written to overwrite the modified files.I have not been able to find any discussion on this topic. Seems like this issue should be part of the build and deployment topic.Comments?
June 11, 2021 at 03:11PM by sigpoggy
https://ift.tt/3veTjNc
Implications of assets being user data
I am making an iOS app that uses assets to store audio files. I setup TestFlight to do testing. I discovered I had a bad audio file, so replaced it and deployed a new build. The changed file did not show up after the update in TestFlight. This is because assets are user data and app updates preserve user data. I had to delete the app and reinstall it to get the new asset.So any update to an app that modifies an existing asset must include code to detect the update and then overwrite the asset with a new version.While learning this I discovered I am using a package that has image assets. So this means that if I update an app that uses a later version of a package that has changed assets, those changes will not be seen in the update. Thus, any app update requires special vigilance to determine what all the assets are and if any have been modified. Then code must be written to overwrite the modified files.I have not been able to find any discussion on this topic. Seems like this issue should be part of the build and deployment topic.Comments?
June 11, 2021 at 03:11PM by sigpoggy
https://ift.tt/3veTjNc
Reddit
r/FlutterDev on Reddit: Implications of assets being user data
Posted by u/sigpoggy - 2 votes and 1 comment
New post on /r/flutterdev subreddit:
One-to-One Video Call with Agora
https://youtu.be/l5Kt03x_lD0
June 11, 2021 at 03:08PM by tadaspetra
https://ift.tt/3zi4Kab
One-to-One Video Call with Agora
https://youtu.be/l5Kt03x_lD0
June 11, 2021 at 03:08PM by tadaspetra
https://ift.tt/3zi4Kab
YouTube
Video Call with Flutter and Agora
Video Calls are very complex features to implement. But with the @Agora Flutter SDK it becomes really simple. In this video we break down the whole process ...
New post on /r/flutterdev subreddit:
How To Create Flutter Custom Package Tutorial
https://www.youtube.com/watch?v=RkF8an-5Jhw
June 11, 2021 at 04:56PM by ITMastering
https://ift.tt/3viv8xg
How To Create Flutter Custom Package Tutorial
https://www.youtube.com/watch?v=RkF8an-5Jhw
June 11, 2021 at 04:56PM by ITMastering
https://ift.tt/3viv8xg
New post on /r/flutterdev subreddit:
Deep Dive into Row and Column widgets - Flutter tutorial for Beginners #Learn Flutter
https://youtu.be/z8aAFZteLdA
June 11, 2021 at 04:21PM by Radheygoswami
https://ift.tt/3pHzrBh
Deep Dive into Row and Column widgets - Flutter tutorial for Beginners #Learn Flutter
https://youtu.be/z8aAFZteLdA
June 11, 2021 at 04:21PM by Radheygoswami
https://ift.tt/3pHzrBh
YouTube
Deep Dive into Row and Column widget | Flutter Tutorial for Beginners - Learn Flutter
Hello DivineCoders !!
In this Video You we will Deep Dive into Row and Column Widget - Flutter Tutorial for Beginners - learn flutter with ease 😊
#learn #flutter
📸 Say hi on:
★Discord: https://discord.com/invite/yu5xDsa
★Twitter: https://twitter.com/DivineCoding…
In this Video You we will Deep Dive into Row and Column Widget - Flutter Tutorial for Beginners - learn flutter with ease 😊
#learn #flutter
📸 Say hi on:
★Discord: https://discord.com/invite/yu5xDsa
★Twitter: https://twitter.com/DivineCoding…
New post on /r/flutterdev subreddit:
Flutter: Building custom controls with `FocusableActionDetector` - gskinner blog
https://ift.tt/2RJZIlJ
June 11, 2021 at 05:34PM by gskinner_team
https://ift.tt/3gcLy5Z
Flutter: Building custom controls with `FocusableActionDetector` - gskinner blog
https://ift.tt/2RJZIlJ
June 11, 2021 at 05:34PM by gskinner_team
https://ift.tt/3gcLy5Z
gskinner blog
Flutter: Building custom controls with `FocusableActionDetector` - gskinner blog
When building a custom UI control in Flutter it's tempting to just use a GestureDetector and call it a day, but to do so would be a mistake! Especially if
New tweet from FlutterDev:
🎉 Make your app text exciting with animated_text_kit! Catch the latest #PackageoftheWeek to learn how to use this package to make your text pop, rotate, scale, & more. Tune in to see how to implement it in your app. Watch ⚡ → https://t.co/DFA9BkRfcx https://t.co/PyGEpD1Vmw— Flutter (@FlutterDev) Jun 11, 2021
June 11, 2021 at 07:30PM
http://twitter.com/FlutterDev/status/1403404220410302467
🎉 Make your app text exciting with animated_text_kit! Catch the latest #PackageoftheWeek to learn how to use this package to make your text pop, rotate, scale, & more. Tune in to see how to implement it in your app. Watch ⚡ → https://t.co/DFA9BkRfcx https://t.co/PyGEpD1Vmw— Flutter (@FlutterDev) Jun 11, 2021
June 11, 2021 at 07:30PM
http://twitter.com/FlutterDev/status/1403404220410302467
YouTube
animated_text_kit (Flutter Package of the Week)
Learn more about animated_text_kit → http://goo.gle/pub-dev-animated_text_kit
Make your app text pop, rotate, scale, and more with animated_text_kit. Learn some of the ways you can make your text shine and how to implement it into your app.
This video is…
Make your app text pop, rotate, scale, and more with animated_text_kit. Learn some of the ways you can make your text shine and how to implement it into your app.
This video is…
New post on /r/flutterdev subreddit:
Backend/DevOps suggestion for Flutter App
Hello, I'm new to backend development and so will like to seek your opinion on how to go about it for a flutter app. Thanks in advance for your inputs 😊I have some experience with cloud services, so want to know how to achieve all of the required functionalities for the project (possibly with a BaaS like Amplify or Firebase).To give an overview of the project: The app is built with flutter and serves a lot of short duration videos. The requirements are (including deployment). 1. Transcode videos to different formats (Amplify VoD, coconut, mux) 2. Store user data and watch history (Amplify, firebase datastore) 3. Serve transcoded videos to mobile devices (AWS cloudfront) 4. Authentication (AWS amplify, Firebase) (DevOps) 5. CI/CD of the app (Code magic, GitHub actions) 6. On device testing (AWS device lab, Firebase) 7. A/B testing (Firebase) 8. Monitoring (Amplify or Firebase analytics) 9. Recommendation system (Amplify or Firebase)I'm not sure what's the best approach to achieve this functionalities. Should I use different services for different purpose or can I achieve all of this with one cloud provider? What's the best strategy for long term scalability vs short term MVP rollout?Your inputs will help a newbie like me a lot 🙏🏻
June 11, 2021 at 07:49PM by rainchaser3
https://ift.tt/2SrjrqN
Backend/DevOps suggestion for Flutter App
Hello, I'm new to backend development and so will like to seek your opinion on how to go about it for a flutter app. Thanks in advance for your inputs 😊I have some experience with cloud services, so want to know how to achieve all of the required functionalities for the project (possibly with a BaaS like Amplify or Firebase).To give an overview of the project: The app is built with flutter and serves a lot of short duration videos. The requirements are (including deployment). 1. Transcode videos to different formats (Amplify VoD, coconut, mux) 2. Store user data and watch history (Amplify, firebase datastore) 3. Serve transcoded videos to mobile devices (AWS cloudfront) 4. Authentication (AWS amplify, Firebase) (DevOps) 5. CI/CD of the app (Code magic, GitHub actions) 6. On device testing (AWS device lab, Firebase) 7. A/B testing (Firebase) 8. Monitoring (Amplify or Firebase analytics) 9. Recommendation system (Amplify or Firebase)I'm not sure what's the best approach to achieve this functionalities. Should I use different services for different purpose or can I achieve all of this with one cloud provider? What's the best strategy for long term scalability vs short term MVP rollout?Your inputs will help a newbie like me a lot 🙏🏻
June 11, 2021 at 07:49PM by rainchaser3
https://ift.tt/2SrjrqN
reddit
Backend/DevOps suggestion for Flutter App
Hello, I'm new to backend development and so will like to seek your opinion on how to go about it for a flutter app. Thanks in advance for your...
New post on /r/flutterdev subreddit:
Hey guys! Because of my friend who is total beginner in Flutter, I started to make really quick example videos so they could learn from them something, so I have decided to make a youtube channel for it. Maybe it will help some beginners in here too! 😊
https://www.youtube.com/channel/UC7lcH2u_h-jYdkRamP8m8Vg
June 11, 2021 at 07:47PM by weird-human-of-earth
https://ift.tt/3iwFyXz
Hey guys! Because of my friend who is total beginner in Flutter, I started to make really quick example videos so they could learn from them something, so I have decided to make a youtube channel for it. Maybe it will help some beginners in here too! 😊
https://www.youtube.com/channel/UC7lcH2u_h-jYdkRamP8m8Vg
June 11, 2021 at 07:47PM by weird-human-of-earth
https://ift.tt/3iwFyXz
New post on /r/flutterdev subreddit:
Why I refactored my Flutter app not once but three times.
https://ift.tt/3iNrdGr
June 11, 2021 at 07:40PM by ad-on-is
https://ift.tt/2RKrz5k
Why I refactored my Flutter app not once but three times.
https://ift.tt/3iNrdGr
June 11, 2021 at 07:40PM by ad-on-is
https://ift.tt/2RKrz5k
DNMC
Why I refactored my Flutter app not once, but three times
New post on /r/flutterdev subreddit:
Can anyone help with this question pleaseeee??
https://ift.tt/3fQHt6f
June 11, 2021 at 07:37PM by ihs_ahm
https://ift.tt/3xh1ha4
Can anyone help with this question pleaseeee??
https://ift.tt/3fQHt6f
June 11, 2021 at 07:37PM by ihs_ahm
https://ift.tt/3xh1ha4
Stack Overflow
Flutter: How to sort data in listview.builder after calculating distance from firebase firestore using latitude and longitude
I am making an app that calculates and shows the nearby businesses by fetching the latitude and longitude which I saved in Firebase Firestore and calculate them according to the user location and i...
New post on /r/flutterdev subreddit:
Flutter Web and SEO 👋😁
https://www.youtube.com/watch?v=S5O_a-FirgM
June 11, 2021 at 07:32PM by aspiiire2
https://ift.tt/3zvrcga
Flutter Web and SEO 👋😁
https://www.youtube.com/watch?v=S5O_a-FirgM
June 11, 2021 at 07:32PM by aspiiire2
https://ift.tt/3zvrcga
YouTube
Do this for Flutter Web SEO
Flutter for Web has the problem that it is not well optimized for the Web. Since Flutter uses the canvas tag, the main question is how you should manage the SEO problem? here I'm going to talk about this topic and you can solve it.
☕ - 𝗦𝗨𝗣𝗣𝗢𝗥𝗧 𝗠𝗬 𝗪𝗢𝗥𝗞! …
☕ - 𝗦𝗨𝗣𝗣𝗢𝗥𝗧 𝗠𝗬 𝗪𝗢𝗥𝗞! …
New post on Flutter Dev Google group:
Invitación: Area Planner Functionality - Is this possible? vie 11 jun 2021 17:00 - 19:00 (COT) (Flutter Development (flutter-dev))
Tienes una invitación para el siguiente evento. Título: Area Planner Functionality - Is this possible? Don Walo le está invitando a una reunión de Zoom programada.Tema: Area Planner Functionality - Is this possible?Hora: 11 jun. 2021 05:00 p. m. LimaUnirse a la reunión Zoomhttps://
June 11, 2021 at 09:47PM by wod...@gmail.com
https://ift.tt/3izt8hu
Invitación: Area Planner Functionality - Is this possible? vie 11 jun 2021 17:00 - 19:00 (COT) (Flutter Development (flutter-dev))
Tienes una invitación para el siguiente evento. Título: Area Planner Functionality - Is this possible? Don Walo le está invitando a una reunión de Zoom programada.Tema: Area Planner Functionality - Is this possible?Hora: 11 jun. 2021 05:00 p. m. LimaUnirse a la reunión Zoomhttps://
June 11, 2021 at 09:47PM by wod...@gmail.com
https://ift.tt/3izt8hu
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:
Flutter 2.2.2/Dart 2.13.3 hotfixes released to the stable channel
Greetings! We are pleased to announce the release of Flutter 2.2.2
Flutter 2.2.2/Dart 2.13.3 hotfixes released to the stable channel
Greetings! We are pleased to announce the release of Flutter 2.2.2
New post on /r/flutterdev subreddit:
animated_text_kit (Flutter Package of the Week)
https://youtube.com/watch?v=foQTKCQqVWk&feature=share
June 11, 2021 at 09:30PM by Pixelreddit
https://ift.tt/3vgP6Zh
animated_text_kit (Flutter Package of the Week)
https://youtube.com/watch?v=foQTKCQqVWk&feature=share
June 11, 2021 at 09:30PM by Pixelreddit
https://ift.tt/3vgP6Zh
YouTube
animated_text_kit (Flutter Package of the Week)
Learn more about animated_text_kit → http://goo.gle/pub-dev-animated_text_kit
Make your app text pop, rotate, scale, and more with animated_text_kit. Learn some of the ways you can make your text shine and how to implement it into your app.
This video is…
Make your app text pop, rotate, scale, and more with animated_text_kit. Learn some of the ways you can make your text shine and how to implement it into your app.
This video is…
New post on /r/flutterdev subreddit:
Flutter IM app with Native Go Libraries - Mobile & Desktop
https://ift.tt/35cauV5
June 11, 2021 at 11:16PM by haplo
https://ift.tt/3cAEeiA
Flutter IM app with Native Go Libraries - Mobile & Desktop
https://ift.tt/35cauV5
June 11, 2021 at 11:16PM by haplo
https://ift.tt/3cAEeiA
openprivacy.ca
Discreet Log #9: Flutter with Native Go Libraries
Open Privacy's Director of Engineering, Dan Ballard, talks about how to use non-Dart libraries, in this case Go, in a Mobile and Desktop Flutter app
New post on /r/flutterdev subreddit:
Whats a recommended minsdk version for android?
Im about to add a html viewer to my app because the API returns HTML for a description and I dont want to render HTML tags as text.This plugin required minSdk version 19.Is this a big deal? Im not sure how many people working with older devices.
June 12, 2021 at 01:44AM by KaiN_SC
https://ift.tt/3wdpoGq
Whats a recommended minsdk version for android?
Im about to add a html viewer to my app because the API returns HTML for a description and I dont want to render HTML tags as text.This plugin required minSdk version 19.Is this a big deal? Im not sure how many people working with older devices.
June 12, 2021 at 01:44AM by KaiN_SC
https://ift.tt/3wdpoGq
reddit
Whats a recommended minsdk version for android?
Im about to add a html viewer to my app because the API returns HTML for a description and I dont want to render HTML tags as text. This plugin...
New post on /r/flutterdev subreddit:
Integrating JavaScriptCore-like framework into Flutter app
Good evening everyone,I have been developing native iOS apps for many years now. It is time for me to experience recent technologies such as Flutter. In my iOS apps, I use JavaScriptCore API to run JS within the application. Basically, the entire business logic is driven by JS and native takes care of all the UI. I would like to have the same structure with Flutter so I wanted to ask if there is any way to integrate Javascript business logic into Flutter app? If so, is there any documentation that I can read through or any example I can follow?If this is not possible, what would you suggest me to do so that I can keep business logic independent from application code? My ultimate goal is to be able to update the javascript in server to make adjustments for my app instead of avoid going through full AppStore review cycle.Thank you very much, have a great weekend !
June 12, 2021 at 11:22AM by buonasera_
https://ift.tt/3gtj8DN
Integrating JavaScriptCore-like framework into Flutter app
Good evening everyone,I have been developing native iOS apps for many years now. It is time for me to experience recent technologies such as Flutter. In my iOS apps, I use JavaScriptCore API to run JS within the application. Basically, the entire business logic is driven by JS and native takes care of all the UI. I would like to have the same structure with Flutter so I wanted to ask if there is any way to integrate Javascript business logic into Flutter app? If so, is there any documentation that I can read through or any example I can follow?If this is not possible, what would you suggest me to do so that I can keep business logic independent from application code? My ultimate goal is to be able to update the javascript in server to make adjustments for my app instead of avoid going through full AppStore review cycle.Thank you very much, have a great weekend !
June 12, 2021 at 11:22AM by buonasera_
https://ift.tt/3gtj8DN
reddit
Integrating JavaScriptCore-like framework into Flutter app
Good evening everyone, I have been developing native iOS apps for many years now. It is time for me to experience recent technologies such as...
New post on /r/flutterdev subreddit:
Flutter App UI | E-Commerce App | EP.13 Review, Payment Details, Track Order Screens | Speed Code
https://youtu.be/OAIrnAYkKKQ
June 12, 2021 at 12:29PM by MDKhali
https://ift.tt/3vfCCkQ
Flutter App UI | E-Commerce App | EP.13 Review, Payment Details, Track Order Screens | Speed Code
https://youtu.be/OAIrnAYkKKQ
June 12, 2021 at 12:29PM by MDKhali
https://ift.tt/3vfCCkQ
YouTube
E-Commerce App UI | EP.13 Review, Payment Details, Track Order Screens | Speed Code
#TheTechDesigner
#Flutter #FlutterUI #SpeedCode #FlutterTutorial #FlutterAnimation #FlutterWidgets
Wire Organizer + Charging & Stand Station
► https://amzn.to/3q1VEdw
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Topics Covered :-
━ ━…
#Flutter #FlutterUI #SpeedCode #FlutterTutorial #FlutterAnimation #FlutterWidgets
Wire Organizer + Charging & Stand Station
► https://amzn.to/3q1VEdw
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Topics Covered :-
━ ━…