Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

Payment options for Flutter application
Hi all!I'm a developer with a high background(Java, C#). And I learn Flutter for 6 months.I successfully created and posted to AppStore and Google Market several free applications. And now I want to post a new application with payment options. The free version of my application contains several features. If the user wants to unlock all the features, he can buy the full version.And here I'm stuck.Let's imagine: the user installs my application, he buys the full version. After some time, he removes my application. And after some time, he installs my application again. So, the question is: how to understand that this user already bought the full version of the application? Some external database? Firestore? How to understand that it is that user? How to identify that user? Add login and password? I think this is a bad idea because my application - is just two screens. This is a small application. Login\Password\Registration for small application? Hmmm.. I don't think so. Maybe I'm wrong?Also, how about different platforms? For example, the user has an IOS and android device. He bought the full application on IOS. How to understand this user can access the full version of the application on Android?

November 14, 2019 at 10:53AM by loothood
https://ift.tt/2qfRjbU
New post on /r/flutterdev subreddit:

Does anyone know what state management solution Google Stadia uses?
Just curious. It would be cool to know what google is currently using for production apps

November 14, 2019 at 01:29PM by Shazamo333
https://ift.tt/3500trL
New post on Flutter Dev Google group:

File Picker for Desktop
HI, any Desktop developers here? I need a file picker plugin that allows retrieving multiple file paths from the desktop OS. It should show a native file picker dialog. For macOS and Linux it is already possible with this plugin: https://ift.tt/2OfGdf2

November 14, 2019 at 02:32PM by Thomas Verbeek
https://ift.tt/2qNkOSt
New post on /r/flutterdev subreddit:

I wrote a blog post about using Flutter.
https://ift.tt/2CFAKsN

November 14, 2019 at 05:26PM by jaeder42
https://ift.tt/32GcmSk
New post on /r/flutterdev subreddit:

Tutorial
Does anyone know a tutorial about highlight text in a tts app? Please, post it on comments.

November 14, 2019 at 05:19PM by AlephC
https://ift.tt/2XcfC6T
New tweet from FlutterDev:

Dart โšก๏ธFlutter

Learn about how Flutter uses Dart to enable you to develop an app quickly and deploy it to multiple platforms and why Dart is the #1 fastest growing language on Github.

Watch here → https://t.co/CUr19WqJhe pic.twitter.com/OXEA59RUnWโ€” Dart Language (@dart_lang) November 13, 2019

November 14, 2019 at 06:00PM
http://twitter.com/FlutterDev/status/1195023589147389953
New post on /r/flutterdev subreddit:

Awesome Flutter open-source Flutter Web UI. What do you think?
This is a prototype for an Awesome List UI made with Flutter WebLink: https://modulovalue.com/awesome_list_flutterweb_ui/#/Do you think this could become something useful? Would you subscribe to any category to receive updates if there was a way to do so?Repo on GitHub: https://github.com/modulovalue/awesome_list_flutterweb_ui
The data comes from https://github.com/Solido/awesome-flutter

November 14, 2019 at 07:07PM by modulovalue
https://ift.tt/32Jt1Et
New post on /r/flutterdev subreddit:

Transparent Status bar??
Hey, Guys,I had the below code that worked perfectly to create a transparent status bar.
class MainActivity: FlutterActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
getWindow().setStatusBarColor(0x00000000);
GeneratedPluginRegistrant.registerWith(this)
}
}However, the flutter team made some changes and the new file looks like below.
import androidx.annotation.NonNull;
import io.flutter.embedding.android.FlutterActivity
import io.flutter.embedding.engine.FlutterEngine
import io.flutter.plugins.GeneratedPluginRegistrant
class MainActivity: FlutterActivity() {
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
GeneratedPluginRegistrant.registerWith(flutterEngine);
}
}How do I modify the file to get back the transparent app bar?
note: I only know Dart, no Java or Kotlin experience.

November 14, 2019 at 08:22PM by z_dev_z
https://ift.tt/2qdbFmh
New post on /r/flutterdev subreddit:

Flutter databases
Hi,Got a question, we're currently building an app that needs offline capabilities.
It needs to store around 7000 products and 3000 contacts, and will be used by 20 people(will be expanded to 300+ users in a year or so)I looked into Firestore and that seems a reasonable solutions, even though it will cost me quite some reads, but we can overcome that problem by simply paying a bit more haha.
The only issue that we have is:
How can we search in local cached collections, as far as I can find Firestore doesn't support full text search, which is strange since the largest search company in the world build it.
There are some solutions of using a third party but that doesn't work in offline.Do you guys might have an idea how to cache like 10000 records local and perform full text search on Flutter?
We like to use Firestore but if another solutions will be better i'm fine with that as well.โ€‹Thanks!

November 14, 2019 at 10:52PM by jowe26
https://ift.tt/2phYwI4
New tweet from FlutterDev:

๐Ÿ‘More #FlutterinFocus!

Want a simple animation, but none of the existing implicit animation widgets suit your needs? Join @bouncingsheep to learn how TweenAnimationBuilder can make animation a reality, even without a StatefulWidget!

Watch to learn → https://t.co/lir1gTotSV pic.twitter.com/JX2nxTnEEGโ€” Flutter (@FlutterDev) November 14, 2019

November 14, 2019 at 11:22PM
http://twitter.com/FlutterDev/status/1195104737563172869
New post on Flutter Dev Google group:

Compilation with Kotlin compile daemon was not successful
Hello, Android Studio uses the following ext.kotlin_version = '1.3.60', your version being lower it can create conflicts such as those described in this file: kotlin_migration
New post on Flutter Dev Google group:

How to get flutter logs on iOS platform, and write logs into origin application log file?
Here is my question: I want to develop a hybrid app with Flutter. I found that Flutter log can just print log into Console. But I want to get flutter logs, and write them into my app's log file on iOS? My solution is using channel to send logs to iOS. But I think channel cost too much. Is there

November 15, 2019 at 03:32AM by ็Ž‹ๆ˜Žๆ˜Ž
https://ift.tt/357KPdV