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

SafeArea is ignored in showModalBottomSheet
I've just noticed that top safe area is being ignored in showModalBottomSheet when isScrollControlled is set to true. showModalBottomSheet( context: context, isScrollControlled: true, builder: (context) => MyModal(), ) class MyModal extends StatelessWidget { @override Widget build(Bui

March 28, 2020 at 03:36PM by Peter Chovan
https://ift.tt/3aCfLWQ
New post on /r/flutterdev subreddit:

A Dart/Flutter package for easy validation.
I few days ago I published my first package: https://pub.dev/packages/verifyIt's a pure Dart package to do validations. Validations can be created in many ways and are easy to combine.I also think it's a great fit for validating bloc states for example.The API is very functional and flexible all done with extensions and typedefs. Give me your thoughts about it!

March 28, 2020 at 04:36PM by decaroj
https://ift.tt/2JndpiI
New post on /r/flutterdev subreddit:

Bringing onResume/viewDidAppear onPause/viewDidDisappear to Flutter
https://ift.tt/33ZzDB2

March 28, 2020 at 06:18PM by Epidemy11
https://ift.tt/2xvS0Bg
New post on Flutter Dev Google group:

Corrupted PDF error
I am implementing a pdf viewer in flutter. however, when i am trying to use a url for a pdf i have on my drive(it's not an issue of permission. i opened the link in incognito and it opened), i get the following error -- [onError, {error: java.io.IOException: cannot create document: File not in

March 28, 2020 at 07:42PM by PARTH SAMNANI
https://ift.tt/33RmgCM
New post on /r/flutterdev subreddit:

How would you create a box with draggable corners?
I need to create a box that’s resizable. Basically, I want to move every border and corner to resize.

March 29, 2020 at 05:41AM by Techne03
https://ift.tt/2R91ABh
New post on /r/flutterdev subreddit:

...iOS 13 SDK or later and use an Xcode storyboard to provide the app’s launch screen.
I got the following message from Apple about my Flutter app in the AppStore.Updated Deadline for App Requirements and GuidelinesYahoo/InboxApple Developer 
We greatly value the worldwide developer community, and appreciate your commitment to making a difference in people’s lives through the power of technology. To accommodate developers who may need additional time to update their existing apps on the App Store, the deadline for adhering to the requirements below has been extended to June 30, 2020.Apps for iPhone or iPad must be built with the iOS 13 SDK or later and use an Xcode storyboard to provide the app’s launch screen....Has anyone created the storyboard? Is there any doc or post that helps explain this.TIA

March 29, 2020 at 05:23AM by ByteRocket
https://ift.tt/2QTL8V5
New post on /r/flutterdev subreddit:

Does flutter optimize the build performance when build method called again on stateful widget by building changed components or it builds everything again?
Should I keep my stateful widgets too segregated to improve performance or flutter does that automatically?

March 29, 2020 at 06:58AM by tensorhere
https://ift.tt/2QReN16
New post on Flutter Dev Google group:

Are apps using flutter frontend vs. C/C++ backend allowed for iOS App Store?
Goal I'm building an iOS app using flutter for frontend, and C/C++ as backend. They must interoperate through FFI, which is a language binding scheme through C dynamic libraries. I intend to submit it to iOS App Store. Problems The Dart FFI sample on accessing C-struct
New post on Flutter Dev Google group:

How to ship iOS apps using flutter frontend vs. C/C++ backend to App Store?
Goal I'm building an iOS app using flutter for frontend, and C/C++ as backend. They must interoperate through FFI, which is a language binding scheme through C dynamic libraries. I intend to submit it to iOS App Store. Problems The Dart FFI sample on accessing C-struct
New post on /r/flutterdev subreddit:

Where do you look for help?
Hi guys, I have some problems with firebase storage for flutter web. At this moment there are not many tutorials or asked questions on stackoverflow or github for this topic.So: where do you ask ppl for help? On stackoverflow I'm never getting an answer :(Thank you!

March 29, 2020 at 12:05PM by BrawlStarMaster
https://ift.tt/2xwY3Wp
New post on /r/flutterdev subreddit:

Some small Questions
Hello Guys,I'm very new to Flutter / Dart or Mobile programming in generell, but worked as a C++ Dev for some time during University (just for some Background).I'm trying to build a small game in Flutter to get the hang of it and as of now i got some small questions, where i think only some keywords and ideas will guide me in the right Direction.This is my App so farIn the Top i am using a Container with RichtText and some Styling for some Game Information. I would like to have the gray Information oriented to the left, and the Red information to the right, but still in the same Line. What would be the easiest way to do so ?Bottom Side you can see a horizontal ListView consisting of FieldWidgets (own Class). In those Widgets id like to have the Text which u can see right now moved to the top left corner (with some padding) and then an Image of a Dice or a invisible placeholder in the center where the text is at the moment. Here the question is also about the alignment options, what would be the easiest way to do those two alignements. (The Field right now is a Container, i thougt about doing it with columns, but i could get it to work how i wanted it)This one is probably the most complicated: I'd like to be able to tap on the Information in the Top of the Screen and open a little Popup Dialog(?) where u see more information. In the same style id like to be able to press on the Fields in the bottom List and see another Popup. This one has different Content, precisly id like to have a own Widget (some kind of "picker") and a Confirm Button. On both those popups id like the popup to close if u press anywhere other then the popup.I hope those points where somewhat clear. I could add some source or further explanations if that helps.Thanks a lot in advance :)

March 29, 2020 at 12:54PM by fisching3r
https://ift.tt/3bA8BCS
New post on /r/flutterdev subreddit:

How to ship iOS apps using flutter frontend vs. C/C++ backend to App Store?
GoalI'm building an iOS app using flutter for frontend, and C/C++ as backend. They must interoperate through FFI, which is a language binding scheme through C dynamic libraries. I intend to submit it to iOS App Store.ProblemsThe Dart FFI sample on accessing C-struct works on macOS through dynamic liking and binding. Now dynamic linking is technically possible on iOS according to Xcode 9 - No option to create dylib project iOS, however, it's unclear to me how to ship the app to AppStore, because dynamic linking is not allowed according to Apple Guidelines Section 2.5.2.2.5.2 Apps should be self-contained in their bundles, and may not read or write data outside the designated container area, nor may they download, install, or execute code which introduces or changes features or functionality of the app, including other apps. Educational apps designed to teach, develop, or allow students to test executable code may, in limited circumstances, download code provided that such code is not used for other purposes. Such apps must make the source code provided by the Application completely viewable and editable by the user.Quite a few SO questions confirm this problem, such as:can I use dynamic library(shared object) in my iphone app?Will Appstore reviewers allow us to use dynamic library in iOS8?QuestionsAs of the date when I post this (2020), does this say that I could never ship an app using this architecture to App Store?Is it possible that I static link my C/C++ code into a single binary of a flutter app? Take Unity as an example, their iOS plugin system recompiles the plugin into native app. If flutter has a similar mechanism, how?

March 29, 2020 at 12:38PM by kakyoism
https://ift.tt/2UrqldH