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

Best solution for storing data?
I'm making an app based around foods/ingredients and i find myself with 2 options:A. Use Firebase non-relational storageB. Use flutter for the front-end but for the back-end use Aquaduct framework made for dart to establish a connection with postgreSQL.Which do you would be the best alternative considering speed? Or what could be your reasons to choose one over the other?

December 27, 2019 at 12:21AM by Bata_1
https://ift.tt/2PXx64M
New post on /r/flutterdev subreddit:

How to connect my app to to firebase without admin-sdk(google-config.json)
When reading firebase online documentation they always says that it is not recommended to leave our google-service.json file in our client app , A bad user can access to all our backend firebase project because he has all the infos or admins details of connection. So i wanted to know how to solve this problem and how bad bad it is? if we put our app in production with this google-service.json(admin-sdk)

December 27, 2019 at 04:24AM by TechCoDeFacil
https://ift.tt/2SEU8iT
New post on /r/flutterdev subreddit:

Flutter download video only first time from url save it locally and then play from the saved file.
Using video_player

December 27, 2019 at 11:02AM by Jksandesh
https://ift.tt/363cDB4
New post on Flutter Dev Google group:

Theme change by using Iconbutton in Flutter
I have been searching for the way to implement the dynamic theme change facility in *Flutter app*. most of the videos have the ways by implementing *light to dark* theme by using switches but what i need is as follows let us consider : the initial state is a *Theme.light* and when I press the

December 27, 2019 at 12:40PM by Praveen Kumar Selvaraj
https://ift.tt/2QhEg2E
New post on /r/flutterdev subreddit:

Can we make snap chat filters in flutter and if yes How?
Hey Reddit,I have been looking at this problem for a long time and i stumbled upon arcore and the arkit but the only problem with that will be that i will have to write code differently for android and ios and even differently if i wanted to put it else where so is there any ways i can make augmented faces in flutter.​any ways thanks.

December 27, 2019 at 12:47PM by ACESYT
https://ift.tt/2PZiG48
New post on /r/flutterdev subreddit:

Flutter Design Patterns: An overview of the Abstract Factory design pattern and its implementation in Dart and Flutter
https://ift.tt/2soZYKj

December 27, 2019 at 01:15PM by mkobuolys
https://ift.tt/2rvOqV5
New post on Flutter Dev Google group:

Should I enable web?
Hi There Sorry for this maybe silly question. I'm starting with the flutter and I'm planing to create multi platform application with web included. I've done a little research and as far as I could see the web is more or less still under development. I don't know if it is safe to create a project

December 27, 2019 at 04:36PM by Peter Chovan
https://ift.tt/2F082E5
New post on /r/flutterdev subreddit:

Is it me or do Flutter apps have a specific "look"?
I feel like I can look at an app and say, "Ok, this app was done in Flutter". I know by convention we use material design, but the do the same in Android, right? What is it? It's the look of the widgets and the way the animations look.

December 27, 2019 at 09:17PM by _thinkdigital
https://ift.tt/2QtcBw5
New post on /r/flutterdev subreddit:

Why do programmers prefer dark mode?
Because light attracts bugs.

December 27, 2019 at 11:39PM by UrAvgDeveloper
https://ift.tt/2st8AQ1
New post on Flutter Dev Google group:

How can I get a flutter internship to work remotely
I'm an emerging enthusiastic flutter developer looking for an platform to improve my skill. Been learning flutter recently and written some apps in practice. I currently live in Nigeria and I'm open to suggestions. I'm open to doing the internship remotely.

December 28, 2019 at 12:26AM by Abada Samuel
https://ift.tt/2ZviQ6p
New post on /r/flutterdev subreddit:

Color by number / coloring book in Flutter?
Is Flutter the right tool to make a color by number / coloring book app? Is it even possible? I've been googling and through docs, but I can't seem to find an answer.

December 28, 2019 at 01:05AM by usmiechniety_syzyf
https://ift.tt/2QsXPoL
New post on Flutter Dev Google group:

Flutter EasyLoading - A clean and lightweight Loading widget for Flutter App, easy to use without context.
GitHub:https://ift.tt/2sqgeuB Pub: https://ift.tt/2QpYCab Hope this package can help you. [image: gif01.gif] [image: gif02.gif] [image: gif03.gif]

December 28, 2019 at 02:49AM by huang jianke
https://ift.tt/2t5KOJY
New post on /r/flutterdev subreddit:

How to Convince Your Engineering Lead to Adopt Flutter
https://ift.tt/2QtYSEX

December 28, 2019 at 09:48AM by wajahatkarim3
https://ift.tt/2u1734p
New post on /r/flutterdev subreddit:

Flutter plugin prints colorized strings to console
My second flutter plugin, which is very simplysimply it prints strings in colors to console, which help me categorize debugging in my daily taskshttps://github.com/MohamedSayed95/print_colorhttps://github.com/MohamedSayed95/print_color

December 28, 2019 at 01:03PM by m_sayed
https://ift.tt/355emor
New post on /r/flutterdev subreddit:

Flutter desktop screen size in windows
I was trying to make a Flutter desktop app take full screen size, but the window_size plugin doesn't support windows.so I started looking inside the code of the project and after a while I was inside the windows file of the project and I found this in project/windows/main.cpp:
Win32Window::Point origin(kFlutterWindowOriginX, kFlutterWindowOriginY); Win32Window::Size size(kFlutterWindowWidth, kFlutterWindowHeight); 
so I changed those lines with:
int x = GetSystemMetrics(SM_CXSCREEN); int y = GetSystemMetrics(SM_CYSCREEN); Win32Window::Point origin(0, 0); Win32Window::Size size(x, y); 
and it worked!I don't know C++ at all, this code was copied, I want someone to tell me where can I find the kFlutterWindowWidth, kFlutterWindowHeight anf the other two constants so I can change them from Flutter itself instead of C++.

December 28, 2019 at 01:51PM by byshy
https://ift.tt/2F2JuKF