New post on Flutter Dev Google group:
Generating signed APK option not available.
Hello guys, I have been trying to generate a signed APK. However, the option to generate a signed APK under build is not there and i saw some solutions through project structure from file, project structure option is not there as well. Please help me! Thank you so much guys.!!! PS: when i run
April 10, 2020 at 12:08AM by Mahmoud Alminawi
https://ift.tt/3bYwqo2
Generating signed APK option not available.
Hello guys, I have been trying to generate a signed APK. However, the option to generate a signed APK under build is not there and i saw some solutions through project structure from file, project structure option is not there as well. Please help me! Thank you so much guys.!!! PS: when i run
April 10, 2020 at 12:08AM by Mahmoud Alminawi
https://ift.tt/3bYwqo2
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:
What Type of Flutter Developer Are You?
https://youtu.be/pjb0MBNi9P0
April 10, 2020 at 01:50AM by thehappyharis
https://ift.tt/39Ut2Jj
What Type of Flutter Developer Are You?
https://youtu.be/pjb0MBNi9P0
April 10, 2020 at 01:50AM by thehappyharis
https://ift.tt/39Ut2Jj
YouTube
What Type of Flutter Developer Are You?
Watch till the end for some bloopers!
Sign up 25% OFF the Full Flutter Web with Firebase Udemy Course: https://forms.gle/REsPAiKLrj7pXeGr6
Follow me on the behind the scenes : https://insta.happyharis.com
Support me on Patreon so I can make more entertaining…
Sign up 25% OFF the Full Flutter Web with Firebase Udemy Course: https://forms.gle/REsPAiKLrj7pXeGr6
Follow me on the behind the scenes : https://insta.happyharis.com
Support me on Patreon so I can make more entertaining…
New post on /r/flutterdev subreddit:
What would be the best way to apply turn by turn navigation like google maps?
It looks like a lot of people don't like the google maps plugin, so I've looked at mapbox and leaflet. Are there any other options I should consider? Which plugin would you recommend I use?
April 10, 2020 at 01:01AM by node_user910253
https://ift.tt/2Vd5xWC
What would be the best way to apply turn by turn navigation like google maps?
It looks like a lot of people don't like the google maps plugin, so I've looked at mapbox and leaflet. Are there any other options I should consider? Which plugin would you recommend I use?
April 10, 2020 at 01:01AM by node_user910253
https://ift.tt/2Vd5xWC
reddit
What would be the best way to apply turn by turn navigation like...
It looks like a lot of people don't like the google maps plugin, so I've looked at mapbox and leaflet. Are there any other options I should...
New post on /r/flutterdev subreddit:
Anyone use WidgetsApp instead of Material or Cupertino?
If I want to make a fully custom app with my own button styles and whatnot, how would I use WidgetsApp, does it provide zero styling for the widgets?Also, semantically, should I use a button component for example rather than a Container with an onTap function, even though I don't want the default styling that comes with a Material or Cupertino button?
April 10, 2020 at 03:11AM by satvikpendem
https://ift.tt/2Xrj4fU
Anyone use WidgetsApp instead of Material or Cupertino?
If I want to make a fully custom app with my own button styles and whatnot, how would I use WidgetsApp, does it provide zero styling for the widgets?Also, semantically, should I use a button component for example rather than a Container with an onTap function, even though I don't want the default styling that comes with a Material or Cupertino button?
April 10, 2020 at 03:11AM by satvikpendem
https://ift.tt/2Xrj4fU
reddit
Anyone use WidgetsApp instead of Material or Cupertino?
If I want to make a fully custom app with my own button styles and whatnot, how would I use WidgetsApp, does it provide zero styling for the...
New post on /r/flutterdev subreddit:
<b>State of integration tests automation in Flutter</b>
I'm currently struggling with integration tests automation. The flutter_driver (see <a href="https://flutter.dev/docs/cookbook/testing/integration/introduction">official doc</a>) is great as long as you work locally but things get more complex when running it on CI with real devices (provided by services like App Center, AWS Device Farm, etc.).
For my job, I've gathered all information I could find and wrote a doc, no conclusion, just a description of the state of the art. I thought it would be nice to share in this sub since there are a lot of unanswered posts about this topic (<a href="https://www.reddit.com/r/FlutterDev/comments/cakor8/testing_flutter_for_different_devices/">here</a>, <a href="https://www.reddit.com/r/FlutterDev/comments/dxhxgx/is_there_a_test_lab_option_for_flutter_apps/">here</a> or <a href="https://www.reddit.com/r/FlutterDev/comments/davkxk/firebase_test_lab_flutter_driver/">here</a>). Feedback welcome!----------------------The tricky partThere are some well-established tools for integration test automation:Expresso (Android)XCUITest, Earl grey (iOS)Appium (cross-platform, it’s basically Selenium for mobile).Those tools are native and can access (and control) native components by their keys. Because Flutter has it own native view with everything drawn in it. Those tools are no use for a Flutter app.That’s why the Flutter team came up with a Flutter equivalent: flutter_driver. Problem is: most of the device testing services don’t support this specific tool.AWS Device Farm + SylphThe author of <a href="https://github.com/mmcc007/sylph">Sylph</a> managed to use flutter_driver to run the integration tests on real devices on both iOS and Android.Sylph repo: <a href="https://github.com/mmcc007/sylph">https://github.com/mmcc007/sylph</a>Codemagic CI blog post about Sylph: <a href="https://blog.codemagic.io/flutter-ci-cd-with-codemagic-sylph-aws-device-farm/">https://blog.codemagic.io/flutter-ci-cd-with-codemagic-sylph-aws-device-farm/</a>However, when taking a closer look how it works, it appears that the lib relies on a hack, a comment in the code mentions this StackOverflow question: <a href="https://stackoverflow.com/a/53328272/769006">https://stackoverflow.com/a/53328272/769006</a>The app sent to AWS is actually a dummy Python application. This somehow allows to override the test command, that how we can run the “flutter driver” command.From the author on the library himself:I was able to get flutter driver working on AWS Device Farm by shoe-horning it into an Appium (python) test... kinda like a trojan horse.Source: <a href="https://github.com/flutter/flutter/issues/7087#issuecomment-466634265">https://github.com/flutter/flutter/issues/7087#issuecomment-466634265</a> (1 year ago)Firebase Test LabIt seems like there is the beginning of an official support from the Flutter team with the <a href="https://pub.dev/packages/e2e">e2e</a> package, even it is still suboptimal (Android only, no support for Robo scripts).Open issues:Official support <a href="https://github.com/flutter/flutter/issues/11718">https://github.com/flutter/flutter/issues/11718</a>Robo scripts support: <a href="https://github.com/flutter/flutter/issues/36681">https://github.com/flutter/flutter/issues/36681</a>I also found the discontinued <a href="https://pub.dev/packages/instrumentation_adapter">instrumentation_adapter</a> package but it’s the predecessor of the e2e package mentioned above (there is an obvious similarity when comparing the 2 readme files).SauceLabsThe only working example I found concerning SauceLabs is from the author of Sylph. It is built on TravisCI and use only an Android simulator. It’s more a PoC and it is not very useful since a simulator can be directly accessible from TravisCI where flutter driver can be used.TravisCI config: <a href="https://travis-ci.com/github/mmcc007/test_flutter_saucelabs/jobs/180159349/config">https://travis…
<b>State of integration tests automation in Flutter</b>
I'm currently struggling with integration tests automation. The flutter_driver (see <a href="https://flutter.dev/docs/cookbook/testing/integration/introduction">official doc</a>) is great as long as you work locally but things get more complex when running it on CI with real devices (provided by services like App Center, AWS Device Farm, etc.).
For my job, I've gathered all information I could find and wrote a doc, no conclusion, just a description of the state of the art. I thought it would be nice to share in this sub since there are a lot of unanswered posts about this topic (<a href="https://www.reddit.com/r/FlutterDev/comments/cakor8/testing_flutter_for_different_devices/">here</a>, <a href="https://www.reddit.com/r/FlutterDev/comments/dxhxgx/is_there_a_test_lab_option_for_flutter_apps/">here</a> or <a href="https://www.reddit.com/r/FlutterDev/comments/davkxk/firebase_test_lab_flutter_driver/">here</a>). Feedback welcome!----------------------The tricky partThere are some well-established tools for integration test automation:Expresso (Android)XCUITest, Earl grey (iOS)Appium (cross-platform, it’s basically Selenium for mobile).Those tools are native and can access (and control) native components by their keys. Because Flutter has it own native view with everything drawn in it. Those tools are no use for a Flutter app.That’s why the Flutter team came up with a Flutter equivalent: flutter_driver. Problem is: most of the device testing services don’t support this specific tool.AWS Device Farm + SylphThe author of <a href="https://github.com/mmcc007/sylph">Sylph</a> managed to use flutter_driver to run the integration tests on real devices on both iOS and Android.Sylph repo: <a href="https://github.com/mmcc007/sylph">https://github.com/mmcc007/sylph</a>Codemagic CI blog post about Sylph: <a href="https://blog.codemagic.io/flutter-ci-cd-with-codemagic-sylph-aws-device-farm/">https://blog.codemagic.io/flutter-ci-cd-with-codemagic-sylph-aws-device-farm/</a>However, when taking a closer look how it works, it appears that the lib relies on a hack, a comment in the code mentions this StackOverflow question: <a href="https://stackoverflow.com/a/53328272/769006">https://stackoverflow.com/a/53328272/769006</a>The app sent to AWS is actually a dummy Python application. This somehow allows to override the test command, that how we can run the “flutter driver” command.From the author on the library himself:I was able to get flutter driver working on AWS Device Farm by shoe-horning it into an Appium (python) test... kinda like a trojan horse.Source: <a href="https://github.com/flutter/flutter/issues/7087#issuecomment-466634265">https://github.com/flutter/flutter/issues/7087#issuecomment-466634265</a> (1 year ago)Firebase Test LabIt seems like there is the beginning of an official support from the Flutter team with the <a href="https://pub.dev/packages/e2e">e2e</a> package, even it is still suboptimal (Android only, no support for Robo scripts).Open issues:Official support <a href="https://github.com/flutter/flutter/issues/11718">https://github.com/flutter/flutter/issues/11718</a>Robo scripts support: <a href="https://github.com/flutter/flutter/issues/36681">https://github.com/flutter/flutter/issues/36681</a>I also found the discontinued <a href="https://pub.dev/packages/instrumentation_adapter">instrumentation_adapter</a> package but it’s the predecessor of the e2e package mentioned above (there is an obvious similarity when comparing the 2 readme files).SauceLabsThe only working example I found concerning SauceLabs is from the author of Sylph. It is built on TravisCI and use only an Android simulator. It’s more a PoC and it is not very useful since a simulator can be directly accessible from TravisCI where flutter driver can be used.TravisCI config: <a href="https://travis-ci.com/github/mmcc007/test_flutter_saucelabs/jobs/180159349/config">https://travis…
docs.flutter.dev
Integration testing concepts
Learn about integration testing in Flutter.
New post on Flutter Dev Google group:
Flutter ListBuilder from json data
Im trying to create a list from json api And i would like the user to be able to select multiple object from list. Can you hel??? I tried to user the state but every time i clicked the setState function its refrech all the screen so my selection is removed.
April 10, 2020 at 04:15AM by Thierno lamine Balde
https://ift.tt/2JTXPeO
Flutter ListBuilder from json data
Im trying to create a list from json api And i would like the user to be able to select multiple object from list. Can you hel??? I tried to user the state but every time i clicked the setState function its refrech all the screen so my selection is removed.
April 10, 2020 at 04:15AM by Thierno lamine Balde
https://ift.tt/2JTXPeO
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:
Dice Game Flutter(8th/90 Days Challenge)
Dice Game App is my 8th App in this 90 Days Challenge. In this app, basically there are 2 dices will be present on the screen and when the user will click them it will generate the random number from 1 to 6.I had learnt about Expanded, Flat Button and how to differentiate between the Stateful and Stateless widget properties with each other. I had also got to know about the Math properties related to dart. I had created a function named to automate the task of generating random numbers and changing the picture.Features need to be implemented further are as follows:Exception Handling.Thinking about changing the overall UI( of Material App) after every iteration.When both the numbers will be the same, there should be a pop message should be generated.Some kind of scoring should be present in this application.If anyone wants to take a look and give some feedback about the app/the code, it would be really nice :). Pls star and fork the main repo, if you will find it interesting, I will create more advanced apps in the future. Thanks, r/FlutterDev for motivating me this journey and helping me to become a better developer.Deployed Version of the Project: linkhttps://github.com/irahulcse/A-Complete-Guide-To-Flutter#008---dice-game-flutter
April 10, 2020 at 05:31AM by flutterboxinc
https://ift.tt/3edrNrZ
Dice Game Flutter(8th/90 Days Challenge)
Dice Game App is my 8th App in this 90 Days Challenge. In this app, basically there are 2 dices will be present on the screen and when the user will click them it will generate the random number from 1 to 6.I had learnt about Expanded, Flat Button and how to differentiate between the Stateful and Stateless widget properties with each other. I had also got to know about the Math properties related to dart. I had created a function named to automate the task of generating random numbers and changing the picture.Features need to be implemented further are as follows:Exception Handling.Thinking about changing the overall UI( of Material App) after every iteration.When both the numbers will be the same, there should be a pop message should be generated.Some kind of scoring should be present in this application.If anyone wants to take a look and give some feedback about the app/the code, it would be really nice :). Pls star and fork the main repo, if you will find it interesting, I will create more advanced apps in the future. Thanks, r/FlutterDev for motivating me this journey and helping me to become a better developer.Deployed Version of the Project: linkhttps://github.com/irahulcse/A-Complete-Guide-To-Flutter#008---dice-game-flutter
April 10, 2020 at 05:31AM by flutterboxinc
https://ift.tt/3edrNrZ
GitHub
GitHub - irahulcse/A-Complete-Guide-To-Flutter: This repo contains all the small snippets related to Flutter Apps. Most of the…
This repo contains all the small snippets related to Flutter Apps. Most of the projects/apps are deployed on Flutter Web using GitHub Actions CI Pipeline. - irahulcse/A-Complete-Guide-To-Flutter
New post on /r/flutterdev subreddit:
Futter App Development for Beginners
https://ift.tt/39VuU4I
April 10, 2020 at 07:08AM by millan123ta
https://ift.tt/39X0P4J
Futter App Development for Beginners
https://ift.tt/39VuU4I
April 10, 2020 at 07:08AM by millan123ta
https://ift.tt/39X0P4J
FLUTTER APP DEVELOPMENT FOR BEGINNERS
According to Google's own statements, Flutter may be a mobile app SDK for creating high-quality native interfaces for Android and iOS in record time. Flutter applications are writt
New post on /r/flutterdev subreddit:
Adding DB to app
Hey guys I recently stated with flutter like a few months ago and I was trying to make a time table app I'm done with the front end of stuff but I have no idea how to store what the user would input, so basically it need to store some values offline and retrieve them, what would be the best way to do such a thing?thanks in advanced!
April 10, 2020 at 06:27AM by OddCapital0
https://ift.tt/2ViXhVa
Adding DB to app
Hey guys I recently stated with flutter like a few months ago and I was trying to make a time table app I'm done with the front end of stuff but I have no idea how to store what the user would input, so basically it need to store some values offline and retrieve them, what would be the best way to do such a thing?thanks in advanced!
April 10, 2020 at 06:27AM by OddCapital0
https://ift.tt/2ViXhVa
reddit
Adding DB to app
Hey guys I recently stated with flutter like a few months ago and I was trying to make a time table app I'm done with the front end of stuff but I...
New post on Flutter Dev Google group:
Google's free flutter and dart course with lifetime access if activated in the next three month's.
Hi there!! Hope your guys are doing well. Today I came up over a learning resource made for the beginner who are trying to learn developing in flutter. This is free and beginner friendly. See the link below for more information. https://ift.tt/2xbDC1a
April 10, 2020 at 07:06AM by Souvik Dutta
https://ift.tt/2Rs1jt9
Google's free flutter and dart course with lifetime access if activated in the next three month's.
Hi there!! Hope your guys are doing well. Today I came up over a learning resource made for the beginner who are trying to learn developing in flutter. This is free and beginner friendly. See the link below for more information. https://ift.tt/2xbDC1a
April 10, 2020 at 07:06AM by Souvik Dutta
https://ift.tt/2Rs1jt9
Medium
Announcing a free Flutter introductory course
Ten hours of video and hands-on tutorials to build beautiful apps
New post on Flutter Dev Google group:
Disable Camera move when click the marker google maps flutter
Hi, Kindly help how to disable Camera move when click the marker google maps flutter Thanks in Advance
April 10, 2020 at 08:29AM by Amicus India
https://ift.tt/2x9Vb1X
Disable Camera move when click the marker google maps flutter
Hi, Kindly help how to disable Camera move when click the marker google maps flutter Thanks in Advance
April 10, 2020 at 08:29AM by Amicus India
https://ift.tt/2x9Vb1X
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
Hello guys, don't know if this is the best place to post this but i would like to ask you something.I bought from Udemy a course for flutter by Maximilian Schwarzmuller and it really helped learn a lot of things about flutter and dart. I was wondering if anyone can point me to some other good course/tutorial on Udemy/Youtube with more advanced techniques for flutter so i can expand further my knowledge!Thank you very much in advance!
April 10, 2020 at 08:55AM by Lampat21
https://ift.tt/3c8fStP
Flutter Tutorial
Hello guys, don't know if this is the best place to post this but i would like to ask you something.I bought from Udemy a course for flutter by Maximilian Schwarzmuller and it really helped learn a lot of things about flutter and dart. I was wondering if anyone can point me to some other good course/tutorial on Udemy/Youtube with more advanced techniques for flutter so i can expand further my knowledge!Thank you very much in advance!
April 10, 2020 at 08:55AM by Lampat21
https://ift.tt/3c8fStP
reddit
Flutter Tutorial
A subreddit for Google's crossplatform UI toolkit.
New post on /r/flutterdev subreddit:
Replace native Apps in Google Play and Apple App Store with Flutter Apps over store update mechanisms. Additional keep applications' keys in the keystore/keychain.
Hello,we currently have an application developed native for Android (Kotlin/Java) and iOS (Swift/Objective C) which relies on the Android Keystore and Apple Keychain.This Application is distributed over the App-Stores (Goole Play/ Apple App Store).Now we want to develop our Application completely new with Flutter. We need to access the keystore and keychain also with this application (should be doable).Is it also possible, that we will publish our new application as an update to the App stores and access/use the previously, with the native apps generated keys? Do you have expirience with replacing native Apps with flutter apps in the App stores? What do we need to pay attention to?Thank you for your help :)
April 10, 2020 at 08:48AM by Langohr2394
https://ift.tt/2JQPIzJ
Replace native Apps in Google Play and Apple App Store with Flutter Apps over store update mechanisms. Additional keep applications' keys in the keystore/keychain.
Hello,we currently have an application developed native for Android (Kotlin/Java) and iOS (Swift/Objective C) which relies on the Android Keystore and Apple Keychain.This Application is distributed over the App-Stores (Goole Play/ Apple App Store).Now we want to develop our Application completely new with Flutter. We need to access the keystore and keychain also with this application (should be doable).Is it also possible, that we will publish our new application as an update to the App stores and access/use the previously, with the native apps generated keys? Do you have expirience with replacing native Apps with flutter apps in the App stores? What do we need to pay attention to?Thank you for your help :)
April 10, 2020 at 08:48AM by Langohr2394
https://ift.tt/2JQPIzJ
reddit
Replace native Apps in Google Play and Apple App Store with...
A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
Flutter run "hangs" on iOS simulator
Hi guys, Flutter run is hanging only on iOS simulator saying "Waiting for observatory port to be available..." This is happening only for iOS simulator. On Android, it's working fine Please help me... Thank you so much, guys !!! [image: Mailtrack] < https://mailtrack.io?utm_source=gmai
April 10, 2020 at 09:32AM by Mohammed Umar ibn Shafee
https://ift.tt/3aZUJSv
Flutter run "hangs" on iOS simulator
Hi guys, Flutter run is hanging only on iOS simulator saying "Waiting for observatory port to be available..." This is happening only for iOS simulator. On Android, it's working fine Please help me... Thank you so much, guys !!! [image: Mailtrack] < https://mailtrack.io?utm_source=gmai
April 10, 2020 at 09:32AM by Mohammed Umar ibn Shafee
https://ift.tt/3aZUJSv
Mailsuite
Email tracker for Gmail — Mailsuite
Enhance relationship growth with our email tracker for Gmail. Track emails, receive read receipts, and gain valuable insights for effective communication.
New post on Flutter Dev Google group:
Can I use SQL in flutter project?
Friends I have database on SQL. Can i use SQL instead of SQL lite and is it possible? Also is there any tutorial/ Article/ on how to use SQL ( not SQL Lite) for flutter. Many Thanks A
April 10, 2020 at 11:40AM by Atul d
https://ift.tt/2x9Akf9
Can I use SQL in flutter project?
Friends I have database on SQL. Can i use SQL instead of SQL lite and is it possible? Also is there any tutorial/ Article/ on how to use SQL ( not SQL Lite) for flutter. Many Thanks A
April 10, 2020 at 11:40AM by Atul d
https://ift.tt/2x9Akf9
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 while running the program
In my application, I try to interface update, create, delete record with firebase. while runing the program i founf this error Using hardware rendering with device AOSP on IA Emulator. If you get graphics artifacts, consider enabling software rendering with "--enable-software-rendering".
April 10, 2020 at 12:18PM by Abinavan Nagendran
https://ift.tt/2Rr0NM4
Error while running the program
In my application, I try to interface update, create, delete record with firebase. while runing the program i founf this error Using hardware rendering with device AOSP on IA Emulator. If you get graphics artifacts, consider enabling software rendering with "--enable-software-rendering".
April 10, 2020 at 12:18PM by Abinavan Nagendran
https://ift.tt/2Rr0NM4
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:
Is there any way to automatically fix all imports when you move a file?
Let's say I have
April 10, 2020 at 01:02PM by themindstorm
https://ift.tt/2XqeZsz
Is there any way to automatically fix all imports when you move a file?
Let's say I have
button.dart
. Various different components have imported button.dart
. Now let's say I move the file from components/
to buttons/
, I have to manually go into each file and fix the imports. Is there a way to do this automatically?I'm using VSCodeApril 10, 2020 at 01:02PM by themindstorm
https://ift.tt/2XqeZsz
reddit
Is there any way to automatically fix all imports when you move a...
Let's say I have `button.dart`. Various different components have imported `button.dart`. Now let's say I move the file from `components/` to...
New post on /r/flutterdev subreddit:
Flutter App Development for Beginners
http://top-mobile-application-development-company.mystrikingly.com/blog/flutter-app-development-for-beginners
April 10, 2020 at 12:55PM by millan123ta
https://ift.tt/3c8vXzM
Flutter App Development for Beginners
http://top-mobile-application-development-company.mystrikingly.com/blog/flutter-app-development-for-beginners
April 10, 2020 at 12:55PM by millan123ta
https://ift.tt/3c8vXzM
FLUTTER APP DEVELOPMENT FOR BEGINNERS
According to Google's own statements, Flutter may be a mobile app SDK for creating high-quality native interfaces for Android and iOS in record time. Flutter applications are writt
New post on /r/flutterdev subreddit:
Dynamic screens
I’m just beginning with Flutter and I’m trying to work out if it’s possible to dynamically build a screen. Hoping some experts in here can point me in the right direction.I have an app in vanilla JavaScript with JQuery that I’m thinking about rewriting using Flutter.The main part of the app has a single page which dynamically generates its components and interactivity at run time.It loads a JSON file which specifies deploy X component Y times with this data. A JavaScript file for that component is then loaded, the component is created on screen with the appropriate data and then the next component until all components are created and the screen is complete.There’s around 50 different component types that can be used on a page. Each page only uses a single component type but it may be used multiple times. There’s around 5000 pages.In Flutter, I could see how each component could be a widget but could I create the instance of the component at run time? Would I have to have every possible component (50 ish) imported to the page regardless of whether it is used on that page?In my vanilla JavaScript version, the component would only be loaded if it’s used in the page and then each required instance would be deployed to the page at runtime.I’m just not sure if this is possible in Flutter or how you might go about it. Or even if there is an alternative approach that would better fit into the Flutter approach.Thanks for any thoughts you may have on this.
April 10, 2020 at 10:44AM by CBrigante78
https://ift.tt/3c4gUaf
Dynamic screens
I’m just beginning with Flutter and I’m trying to work out if it’s possible to dynamically build a screen. Hoping some experts in here can point me in the right direction.I have an app in vanilla JavaScript with JQuery that I’m thinking about rewriting using Flutter.The main part of the app has a single page which dynamically generates its components and interactivity at run time.It loads a JSON file which specifies deploy X component Y times with this data. A JavaScript file for that component is then loaded, the component is created on screen with the appropriate data and then the next component until all components are created and the screen is complete.There’s around 50 different component types that can be used on a page. Each page only uses a single component type but it may be used multiple times. There’s around 5000 pages.In Flutter, I could see how each component could be a widget but could I create the instance of the component at run time? Would I have to have every possible component (50 ish) imported to the page regardless of whether it is used on that page?In my vanilla JavaScript version, the component would only be loaded if it’s used in the page and then each required instance would be deployed to the page at runtime.I’m just not sure if this is possible in Flutter or how you might go about it. Or even if there is an alternative approach that would better fit into the Flutter approach.Thanks for any thoughts you may have on this.
April 10, 2020 at 10:44AM by CBrigante78
https://ift.tt/3c4gUaf
reddit
Dynamic screens
I’m just beginning with Flutter and I’m trying to work out if it’s possible to dynamically build a screen. Hoping some experts in here can point...
New post on /r/flutterdev subreddit:
A short tutorial on how to develop a Switch button in Flutter. Follow me for new and interesting flutter tutorials. @maadhav_sharma
https://twitter.com/maadhav_sharma/status/1248516306199953408
April 10, 2020 at 10:18AM by maadhav2001
https://ift.tt/34oOzIU
A short tutorial on how to develop a Switch button in Flutter. Follow me for new and interesting flutter tutorials. @maadhav_sharma
https://twitter.com/maadhav_sharma/status/1248516306199953408
April 10, 2020 at 10:18AM by maadhav2001
https://ift.tt/34oOzIU
Twitter
Maadhav Sharma 💙
A short tutorial on how to develop a Switch button in Flutter. Follow me for new and interesting flutter tutorials. #flutter #programmingisfun #programmers #coding #tutorial #flutterdev #coder #code #uideveloper @FlutterDev @flutteriodaily @flutterize
New post on /r/flutterdev subreddit:
Best-practice for moving documents between collections (in Firebase, but this question is more theoretical)?
Hi all, this a theoretical/best-practice question.Say I'm making a fancy to do list, where each task (with a lot of complicated steps per task) are each their own document.I also have a bunch of collections, each collection represents a different status of the tasks inside of it. For example, "collection_unassigned", "collection_assigned", "collection_complete".As document_task moves through a workflow, I'd like to move it between different collections so that I can see, at a glance by viewing the collections in Firestore, how many tasks I have in each collection.Is this acceptable practice? Putting theory into practice, what is a better way to approach my above goal? Each document having a field that says what status it currently has?(My concern is that if I leave all document_tasks in the same collection, it will quickly become large and slow, as I'm dealing with tens of thousands of document_tasks.)
April 10, 2020 at 04:14PM by IndependentTart
https://ift.tt/2JVLtTC
Best-practice for moving documents between collections (in Firebase, but this question is more theoretical)?
Hi all, this a theoretical/best-practice question.Say I'm making a fancy to do list, where each task (with a lot of complicated steps per task) are each their own document.I also have a bunch of collections, each collection represents a different status of the tasks inside of it. For example, "collection_unassigned", "collection_assigned", "collection_complete".As document_task moves through a workflow, I'd like to move it between different collections so that I can see, at a glance by viewing the collections in Firestore, how many tasks I have in each collection.Is this acceptable practice? Putting theory into practice, what is a better way to approach my above goal? Each document having a field that says what status it currently has?(My concern is that if I leave all document_tasks in the same collection, it will quickly become large and slow, as I'm dealing with tens of thousands of document_tasks.)
April 10, 2020 at 04:14PM by IndependentTart
https://ift.tt/2JVLtTC
reddit
Best-practice for moving documents between collections (in...
Hi all, this a theoretical/best-practice question. Say I'm making a fancy to do list, where each task (with a lot of complicated steps per task)...