Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
GGroup: Supported Font Formats in Flutter
Hey hey :) I asked on Github, but maybe it wasn't the best place. Is there a list of officially supported font formats for Flutter? Two reasons I'd like to know: 1) I'd like to add this information to the Flutter Cookbook and 2) I was using WOFF in the `font_awesome_flutter` library, which

Submitted March 30, 2018 at 02:42PM by Brian Egan
via Flutter Dev https://ift.tt/2pT5fof
GGroup: Flutter goodies for a talk at a french technical event
Hi, I'm a french mobile lead-tech and I live in Nantes (France). I heard about Flutter by looking the Google IO youtube channel last year. I decide recently to learn more about Flutter, I follow your great documentation and I'm really enthousiast now about your solution ! I'm currently

Submitted March 30, 2018 at 05:18PM by Pierre Tibulle
via Flutter Dev https://ift.tt/2GnTzAZ
GGroup: Accessing Widgets in Native
Hello, I'm starting a new app for our company and I wanted to try using Flutter for it. I did have one major question that I wanted to get some clarification on before getting too deep into it. Our app will let users have the option to disable some UI elements by default, and saves those

Submitted March 30, 2018 at 05:51PM by Cody Harness
via Flutter Dev https://ift.tt/2Ik2mVc
GGroup: App not running on iPhone Simulator
I'm looking at Flutter for the first time today. I am using just the basic demo code you get when you create a new project. I can run the app fine on Android emulator and on a physical Android device, no problems. However it is not working on the iPhone simulator. The app is created and installed

Submitted March 30, 2018 at 08:22PM by Terry Diederich
via Flutter Dev https://ift.tt/2uzpSeO
GGroup: How to store a Auth Token?
I am working on an app that needs to login via an API. Basically I present a login screen, submit to an API and get an auth token back. That auth token needs to be sent with all subsequent requests. If the http service returns a 403 then that means the auth token has expired and I need to submit

Submitted March 30, 2018 at 10:34PM by Mike Roosa
via Flutter Dev https://ift.tt/2uA8p5H
GGroup: Texture Widget & OpenGL
Hello, I am looking for help how to render OpenGL via Texture widget on Android. I managed to render it on iOS. It works well. But completely stuck on Android implementation. Are there any examples or hints how to display OpenGL framebuffer/texture with SurfaceTexture? (heh, except android

Submitted March 31, 2018 at 05:25AM by sapry...@gmail.com
via Flutter Dev https://ift.tt/2E8FCVj
Reddit: Why is my app not displaying an AppBar?
I have built an app with the MVP design pattern and for some reason, I can't get the appbar to display on top of my app. The app just displays a list of Cardviews based on data that is pulled from an API. The source of the app can be found here. When you launch the app, it just shows the list of Cardviews without any background nor an appbar up top. This is what the app looks like currently.In my main.dart file, I create a new instance of MoviesPage() which is the main layout for the app that holds the listview. The `main.dart file looks like this:
void main() { Injector.configure(Flavor.PROD); runApp(new MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return new MaterialApp( theme: new ThemeData( primarySwatch: Colors.green, primaryColor: Colors.deepOrange ), title: 'Flutter Demo', home: new MovieList(), ); } } 
In addition, this is what my MoviesPage dart file looks like:
class MoviesPage extends StatelessWidget { @override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text("Movies"), ), body: new MovieList(), ); } } 
As you can see, I setup an appbar in the MoviesPage() class, but it's not displaying in the app for some reason. Does anyone have any ideas on how to remedy this issue?

Submitted March 31, 2018 at 03:23AM by rakesh11123
via reddit https://ift.tt/2uwniWY
Reddit: Image manipulation?
At a high-level, how would one go about loading a photo, manually tweak the image at the pixel level, and save the photo? Or is this more of a Dart question than a Flutter question?

Submitted March 31, 2018 at 09:18AM by who1234567890
via reddit https://ift.tt/2IgqR5q
Reddit: Architecture for Flutter App?
I'm starting to write an App with Flutter. I have been doing researches around for what architecture to use. I found the most common one is MVP (Model View Presenter). Also, I found a great sample app using Redux.I'm kinda not sure what to use.What do you guys' opinion on this?*PS: I'm sorry if similar questions have been asked.

Submitted March 31, 2018 at 05:39PM by harry7cao
via reddit https://ift.tt/2pYNIMn
Reddit: An MVC approach to Flutter
https://ift.tt/2IfENMU

Submitted March 31, 2018 at 11:15PM by Purple_Pizzazz
via reddit https://ift.tt/2GmxxTb