Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

url launcher phone - mail
i use url launcher to open phone app and email app, it works just fine in android but in ios it doesn't work!, i tried a few solutions but none worked. here's the code i use: void customLaunch (command) async{ if(await canLaunch(command)){ await launch(command); } else{ print("could

July 16, 2020 at 02:55AM by Yasin
https://ift.tt/3h4ik77
New post on /r/flutterdev subreddit:

Publishing my First App. Tips?
I have been using flutter on and off for quite a while, though it used to be a HUGE hassle trying to learn different Widgets and making them work together flutter REALLY has come a long way. I'd like to thank you all for your docs, tips and tricks.
I have recently come to an agreement with a local gym I go to quite frequently and I made a few Flutter App mockups and the owners loved it! I am still working hard but I might end up publishing my own app, which is very exiting and very frightening at the same time, since I do not have any experience. I am getting an Apple Dev account soon and I have already tested my app on android. works pretty well! (using Firebase Auth for now)Any tips? or articles -other than flutters guide to publishing an app- I should read before going a head with this process? I'd love to hear you guys out.
I am also trying to document my learning and publishing process so others can learn from my mistakes

July 16, 2020 at 05:30AM by SinValentino
https://ift.tt/3j83eiN
New post on /r/flutterdev subreddit:

How much is an app worth and how much to charge?
What I mean is, how do you charge clients? Do you do it by hours worked? Or by features in the app?I've been working on this app for someone, so I was just wondering if I could get an idea on how much it is "worth"I can't get too much in the details, so I'm gonna change the way I describe it. It actually isn't a book/library app, but the concepts are the same.It's an app which libraries can use to track how many times a book has been borrowed, who has borrowed it, and when it was last borrowed. There are also other details they can store about separate books, such as if they have any issues/need replacement. The borrowers can see which books are available, and where they are available. They may also see a history of all the books they borrowed.So first off, I believe this app will cost more to develop purely because it uses a database and may require a custom backend, not to mention, the hosting costs.I'd like to get some advice and insights. I've been doing app development for a while, and I'd consider myself well-versed with Flutter and I'd like to learn more. Thanks!

July 16, 2020 at 08:46AM by feed-6294-yeje
https://ift.tt/2Wrk3eG
New post on /r/flutterdev subreddit:

App Player - browse designs and run flutter code instantly
Hello, Flutter Community!There are several great websites where you can try your design (or any single-file application), see how it works in web mode, publish it, and show it to the world. You can also browse the designs of other creators. It's really great! But sometimes using a smartphone is handier. So why not have the same as a mobile app?Today we are excited to announce Flutter App Player - a mobile application where you can submit your design and browse the designs of others. Essentially the Player can compile any Dart code in seconds and run as a Flutter app right away, on the device. The speed of the app under execution is on par with runtime mode, so you get the same experience.In addition, you can also paste a link to a code snippet, or scan it as QR code and get it running in a moment.Currently, the Player is in early beta and has some limitations. They will be removed in some time. Please refer to the β€œAbout” page of the Player for a list of limitations and steps to add your design.https://play.google.com/store/apps/details?id=net.starmachine.playerPlease give it a try and stay tuned!

July 16, 2020 at 09:59AM by codeatsleep
https://ift.tt/3eu3F3f
New post on /r/flutterdev subreddit:

7 Flutter Commands You Must Know
https://ift.tt/32mOWop

July 15, 2020 at 06:12PM by Immediate_Entry_3626
https://ift.tt/3j37CzD
New post on /r/flutterdev subreddit:

Internet Streaming Radio - Series - EP 01-06 - Snippet Coder - LEARN.CODE.CREATE - Learning Platform
https://ift.tt/3fzTknH

July 16, 2020 at 10:01AM by SnippetCoder
https://ift.tt/3h64aCp
New post on /r/flutterdev subreddit:

Light dark Toggle
Today I saw a design on dribble which just amazed me and made me curious to implement it in flutter.Finally after hours of hard work I implemented the design without using any third-party plugins of any kind. And it just feels awesome. I ❀️ Flutter. Download the app from Github and play with it, I'm sure you'll love it and yes please don't forget to star 🌟 the repo if you liked it. πŸ˜ŠπŸ™
Github Source Code: https://github.com/shubhamhackz/light\_dark\_toggle
Dribble Design: https://dribbble.com/shots/5846239-Light-dark-toggle-switch-InVision-Studio

July 16, 2020 at 12:24PM by shubhamhackz
https://ift.tt/32ntUpL
New post on /r/flutterdev subreddit:

Is there any good package for Dropbox API, Cloudkit, or Google Drive API?
I want to add a feature where users can back up app data to their Dropbox, iCloud Drive, or Google Drive account, and restore the data when needed. Does anyone know any good package for that?

July 16, 2020 at 12:45PM by KuoyHuot
https://ift.tt/2OthEvA
New post on /r/flutterdev subreddit:

Next update for Flutter Web?
Does anyone knows when the next version of Flutter for Web is available on beta or stable and a list of change logs? I'm planning to make my first production website using Flutter for Web.One thing I don't like about the current Web version is the '#' on the address URL. There is a ticket related to this issue and it seems it will be not fixed anytime soon.

July 16, 2020 at 01:57PM by tledrag
https://ift.tt/38Zaedc
New post on Flutter Dev Google group:

Creating Posts And Viewing The posts In Two Projects Using Firebase & Flutter
Hi, I'm new to flutter development and I'm having some difficulties... I am currently working on a project, which has two apps that will be passing data between them(e.g. post w/ text, videos, or pictures). One of the apps will be used by the end-users and the other app will be for the admin,

July 16, 2020 at 02:36PM by Charisa Emmanuel
https://ift.tt/2WpRwGi
New post on /r/flutterdev subreddit:

Is there anything OpenJFX can do that Flutter can't?
I'm really excited about desktop Flutter apps, so I'm curious if there are any hard limits compared to OpenJFX.

July 16, 2020 at 04:45PM by dittospin
https://ift.tt/3fzK6Ip
New post on /r/flutterdev subreddit:

Best way to implement HTTP(S) requests
I am currently making my first Flutter app, and I came across the need to interact with some APIs. As of right now, I found 2 ways to do it, either via the dart io package or the http one from pub.devThe http package provides an easier to read, shorter and overall more concise implementation, but I can't seem to make it accept self signed certificates.The dart io package implementation seems to be a lot more verbose, but has a bad certificate callback, which does provide that functionality.All the tutorials i found suggest using the dart io package for self signed certs. Is it possible to make the http package accept them too?

July 16, 2020 at 06:41PM by MikeAnth
https://ift.tt/3jhEF39
New post on Flutter Dev Google group:

Ayuda Android studio (Flutter SDK is not found in the specified location)
Hola ese error me sale en android studio, ya hice todos los pasos recomendados en la pagina oficial pero aun sigue dando el mismo error Android Studio 4.0. 1

July 16, 2020 at 06:37PM by Yoel Laya
https://ift.tt/30kOlkD