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

Would you recommend dart for an iMessage extension?
EDIT: I ment to say "Flutter" not "Dart" on the title, sorry about thatHey! I have this app idea, I've used flutter before but this app is unlikely othet apps I've created or "played around" and focus a lot on one native iOS executive SDK, iMessage extensions. Is it possible to create an iMessage target for flutter? I am willing to code Swift to build the iMessage extension, but I thought I would ask the pros if this is a good idea, if possible. I want to keep once codebase which is why I'm looking into flutter rather than straight up iOS development, since I want an Android counterpart as well.Is it possible to use the Flutter SDK within an iMessage extension target?What is the best way to share data between the main Flutter app and the iMessage extension (if written in native code).

July 12, 2020 at 06:48AM by Sethu_Senthil
https://ift.tt/2DvO1HT
New post on /r/flutterdev subreddit:

Due to the present flutter limitations(one module etc), what is the best practice to move a big flutter project in a native app(because one discovers really need a particular feature)
For example you invest months developing a project in flutter and then you realize you really need to use a small native feature, what you do considering as per documentation that there are a lot of existing limitations? https://flutter.dev/docs/development/add-to-appDo you need a special architecture to move all the project or I am formulating a wrong use case?

July 12, 2020 at 11:45AM by ndrokky
https://ift.tt/305Hzzb
New post on /r/flutterdev subreddit:

Dart.academy is back for real, just check it out!
But I still can't subscribe to the latest news!

July 12, 2020 at 01:46PM by 2reform
https://ift.tt/2W93YKs
New post on /r/flutterdev subreddit:

Productly - Helps you to get product origin!!
Productly will help you to identify the country where the product is made.Productly is an app that will help you to identify the country where the product is made or manufactured. What you have to do? Nothing. - Open the app. - Click on "Scan Barcode" button. - Face the camera towards the barcode. - The app will automatically read the Barcode and the result will be displayed.It's completely made in #flutter. Here's the link to download:https://play.google.com/store/apps/details?id=abhishekdoshi.netlify.productly

July 12, 2020 at 03:02PM by AbhishekDoshi26
https://ift.tt/2Zjrqqo
New post on /r/flutterdev subreddit:

Is this a good beginner project?
Hi, I want to start learning flutter and besides some tutorial I am going to do I want to realize an idea of mine. I think you learn a new language best if you actually try to implement an idea of yours that is important to you.So my question is, is the following idea a good project to learn flutter? Or is it too much in the beginning?I want to create an app in which I can browse web pages like in a browser but when I press an link on this website long, I get an pop up or overlay in which I can add a note, choose a topic and save the target of this link to my Firestore database.Without any knowledge of Flutter at the moment I thought about utilising Webview and then hijack the listener for long touches to show the overlay.Thanks for your feedback, appreciate any points of directions as well as good beginner tutorials :-)Thx BR

July 12, 2020 at 03:48PM by urban-a
https://ift.tt/38Q5BC6
New post on /r/flutterdev subreddit:

Is this a good beginner project?
Hi, I want to start learning flutter and besides some tutorial I am going to do I want to realize an idea of mine. I think you learn a new language best if you actually try to implement an idea of yours that is important to you.So my question is, is the following idea a good project to learn flutter? Or is it too much in the beginning?I want to create an app in which I can browse web pages like in a browser but when I press an link on this website long, I get an pop up or overlay in which I can add a note, choose a topic and save the target of this link to my Firestore database.Without any knowledge of Flutter at the moment I thought about utilising Webview and then hijack the listener for long touches to show the overlay.Thanks for your feedback, appreciate any points of directions as well as good beginner tutorials :-)Thx BR

July 12, 2020 at 03:47PM by urban-a
https://ift.tt/32bGclc
New post on /r/flutterdev subreddit:

Is this a good beginner project?
Hi, I want to start learning flutter and besides some tutorial I am going to do I want to realize an idea of mine. I think you learn a new language best if you actually try to implement an idea of yours that is important to you.So my question is, is the following idea a good project to learn flutter? Or is it too much in the beginning?I want to create an app in which I can browse web pages like in a browser but when I press an link on this website long, I get an pop up or overlay in which I can add a note, choose a topic and save the target of this link to my Firestore database.Without any knowledge of Flutter at the moment I thought about utilising Webview and then hijack the listener for long touches to show the overlay.Thanks for your feedback, appreciate any points of directions as well as good beginner tutorials :-)Thx BR

July 12, 2020 at 03:47PM by urban-a
https://ift.tt/303rkTa
New post on /r/flutterdev subreddit:

Why GeneratedPluginRegistrant.registerWith(this) gives error in Flutter MainActivity.kt?
GeneratedPluginRegistrant.java
package io.flutter.plugins; import androidx.annotation.Keep; import androidx.annotation.NonNull; import io.flutter.embedding.engine.FlutterEngine; import io.flutter.embedding.engine.plugins.shim.ShimPluginRegistry; /** * Generated file. Do not edit. * This file is generated by the Flutter tool based on the * plugins that support the Android platform. */ @Keep public final class GeneratedPluginRegistrant { public static void registerWith(@NonNull FlutterEngine flutterEngine) { ShimPluginRegistry shimPluginRegistry = new ShimPluginRegistry(flutterEngine); net.goderbauer.flutter.contactpicker.ContactPickerPlugin.registerWith(shimPluginRegistry.registrarFor("net.goderbauer.flutter.contactpicker.ContactPickerPlugin")); com.pichillilorenzo.flutter_appavailability.AppAvailability.registerWith(shimPluginRegistry.registrarFor("com.pichillilorenzo.flutter_appavailability.AppAvailability")); io.flutter.plugins.flutter_plugin_android_lifecycle.FlutterAndroidLifecyclePlugin.registerWith(shimPluginRegistry.registrarFor("io.flutter.plugins.flutter_plugin_android_lifecycle.FlutterAndroidLifecyclePlugin")); flutter.moum.hardware_buttons.HardwareButtonsPlugin.registerWith(shimPluginRegistry.registrarFor("flutter.moum.hardware_buttons.HardwareButtonsPlugin")); flutterEngine.getPlugins().add(new vn.hunghd.flutter.plugins.imagecropper.ImageCropperPlugin()); flutterEngine.getPlugins().add(new io.flutter.plugins.imagepicker.ImagePickerPlugin()); flutterEngine.getPlugins().add(new io.flutter.plugins.sharedpreferences.SharedPreferencesPlugin()); com.lykhonis.simpleimagecrop.SimpleImageCropPlugin.registerWith(shimPluginRegistry.registrarFor("com.lykhonis.simpleimagecrop.SimpleImageCropPlugin")); } } 
MainActivity.kt
package com.example.flutterapp import android.os.Bundle import io.flutter.app.FlutterActivity import io.flutter.plugin.common.MethodChannel import io.flutter.plugins.GeneratedPluginRegistrant class MainActivity : FlutterActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) GeneratedPluginRegistrant.registerWith(this) } } 
I am getting error in line of MainActivity.kt
GeneratedPluginRegistrant.registerWith(this) ^ 
I tried replacing it with flutterEngine too but it didn't work. I am actually creating an app that could run in background and for that I am using sharedPreferences. My code runs in a normal separate project but it gives error in this one please help with this Thank you in advance!flutter doctor -v output,
[√] Flutter (Channel dev, 1.19.0-3.0.pre, on Microsoft Windows [Version 10.0.19041.329], locale en-IN) • Flutter version 1.19.0-3.0.pre at D:\Software\flutter • Framework revision 6135091de9 (6 weeks ago), 2020-06-01 17:17:03 -0700 • Engine revision e39301f23f • Dart version 2.9.0 (build 2.9.0-13.0.dev 6489a0c68d) [√] Android toolchain - develop for Android devices (Android SDK version 30.0.0) • Android SDK at C:\Users\sawan\AppData\Local\Android\sdk • Platform android-30, build-tools 30.0.0 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01) • All Android licenses accepted. [√] Android Studio (version 4.0) • Android Studio at C:\Program Files\Android\Android Studio • Flutter plugin version 47.1.2 • Dart plugin version 193.7361 • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01) [√] Connected device (1 available) • RMX1801 • 2d037598 • android-arm64 • Android 9 (API 28) • No issues found! 
is there any Syntax Error? Please help was unable to find any documentation for this anywhere

July 12, 2020 at 04:23PM by Snoo55744
https://ift.tt/3egY8gs
New post on /r/flutterdev subreddit:

How to publish your first Flutter Package!!
Hey #flutter community!! Today is Sunday, and I thought of spending it productively!! So, here's how I worked!I just published How to publish your first Flutter package!! https://medium.com/@adoshi26.ad/how-to-publish-your-first-flutter-package-739ff66bb6edDo check it out, and provide feedbacks!

July 12, 2020 at 04:16PM by AbhishekDoshi26
https://ift.tt/2ZjBSy8
New post on /r/flutterdev subreddit:

I’m halfway through this course and honestly I’m loving flutter. Now I’m going to take a break, build an app, and strengthen these skills.
https://ift.tt/3gOGjae

July 12, 2020 at 01:51AM by EB-Crusher
https://ift.tt/3gQGrWD
New post on /r/flutterdev subreddit:

Firestore backend for Flutter. In-browser code-lab. Part 1.
https://ift.tt/3ekgOfh

July 12, 2020 at 04:43PM by Elegium
https://ift.tt/305s9Ld
New post on /r/flutterdev subreddit:

How does Flutter's UI handling differ from a framework like RN which uses native widgets?
I started learning Flutter recently and got to know that it manages the UI on its own and the components like widgets are consistent between different platforms.Want to know the pros and cons compared to a framework like React Native which uses native widgets instead.

July 12, 2020 at 05:24PM by purezen
https://ift.tt/2Oh6xWP
New post on /r/flutterdev subreddit:

Hey Folks, I have published a new article "Contributing to Flutter: Getting Started" which will hopefully help you to overcome the fear of open source contributions and contribute to Flutter.
https://ift.tt/2WddNr0

July 12, 2020 at 06:35PM by ayushbherwani
https://ift.tt/3iUGx1s