Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from FlutterDev:

Time to finish Favorites! 🏁
@Fitzface is back to finish building the UI for the Hacker News app Favorites list. This time, we update dependencies, poke StreamBuilder and Navigator again, and pose some new questions to tackle!

Watch the #BoringShow → https://t.co/E6vQZAcFsB pic.twitter.com/blYSfyWTQm— Flutter (@FlutterDev) October 5, 2020

October 05, 2020 at 07:33PM
http://twitter.com/FlutterDev/status/1313170418849677312
New tweet from FlutterDev:

That's a wrap on Season 3!

For our last post on containerized environments, learn more about integration testing with flutter_driver. We'll cover performance profiling, a11y testing, and more!

Check it out → https://t.co/TPKg5tSc92 pic.twitter.com/fl9o3GGRkk— Flutter (@FlutterDev) October 5, 2020

October 05, 2020 at 10:03PM
http://twitter.com/FlutterDev/status/1313208267120799744
New post on Flutter Dev Google group:

Flutter IntelliJ Plugin M50.1 Release
This fixes an issue in IntelliJ 2020.3 EAP (build 203.4204 and later) that caused an exception when trying to show the Flutter test file icon in the project view.

October 05, 2020 at 10:10PM by Steve Messick
https://ift.tt/3lhqMlv
New post on /r/flutterdev subreddit:

Workout App in Flutter
Hi guys,Ive made an app where you can live stream workouts with professional coaches entirely in Flutter.You can video chat with instructors, send messages, videos, images and workout programs.
Join live online workouts with many different classes ranging from Glute workouts to dance.
Have a Personal Trainer completely online.
Create your own programs and execute workouts and keep track of your progress.Check it out at
https://links.motionapp.se/CQ67Let me know what you think.

October 05, 2020 at 11:28PM by hatef12
https://ift.tt/3d1wftE
New post on /r/flutterdev subreddit:

A Game made entirely using flutter widgets?
I always wanted to make my own game but I am not the only one "game loop" kind of guy, so I decided to create a game that uses 100% Flutter widgets and Dart packages without any sort of game engine library.Any of you have tried something like that before? Check that one I made myself:https://play.google.com/store/apps/details?id=com.shinayser.tapthefab.app

October 05, 2020 at 11:37PM by shinayser
https://ift.tt/3jz2uD9
New post on /r/flutterdev subreddit:

Do I need to learn ObjectiveC/Swift/Java/Kotlin in Flutter?
I am coming from React Native. In React Native sometimes you need to learn ObjectiveC/Swift/Java/Kotlin to be able to access the device's APIs and create a bridge to access those APIs in JavaScript.From what I have searched so far, Flutter compiles directly into native code without needing a bridge like React Native does, so from this I think you don't need to learn native codes in Flutter as there will be equivalent in Flutter that can be compiled to native code?

October 06, 2020 at 05:59AM by diesmilingxx
https://ift.tt/36zLNDZ
New post on /r/flutterdev subreddit:

Wiki Art App
Hey there, I built a simple Flutter app that fetches paints and artist bio from wikiart.org API.check it out and contribute if you wanthttps://github.com/bigblackclock/wiki_art_app

October 06, 2020 at 10:46AM by xohadi
https://ift.tt/34ohnlm
New post on /r/flutterdev subreddit:

I've implemented design from dribble
I've made my version of https://dribbble.com/shots/6315218-IoT-Humidity-App-SliderThe result: https://github.com/kherel/flutter_fun/blob/master/gifs/humidity_app_res.gifThe code: https://github.com/kherel/flutter_funMaybe it could interesting for someone. I hope you'll like it.

October 06, 2020 at 02:16PM by kherel
https://ift.tt/3ixJjrX
New post on /r/flutterdev subreddit:

App Feedback Thread - October 06, 2020
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

October 06, 2020 at 02:33PM by AutoModerator
https://ift.tt/3iEdVbg
New post on /r/flutterdev subreddit:

Best Flutter Courses, Books, and Free Resources to Master Flutter framework in 2020 | thecodingpie
Hey friends, I have curated a list of the best available online courses, books, and free resources to learn Flutter in 2020.Whether you are getting started or already an intermediate flutter developer, whether you prefer books or online courses, there is something for everyone.You can find the list here on my blog - https://thecodingpie.com/post/top-5-best-courses-to-learn-flutter-in-2020-beginners-intermediates/This list contains both free and paid resources and courses. You will find every single useful flutter resources out there! If you are interested in Flutter then feel free to check this out.I am damn sure these courses will help you to learn the ins and outs of the Flutter framework in no time!If you have any doubts or If you think I had missed any course names then feel free to comment on my blog. Thank you ;)

October 06, 2020 at 03:29PM by thecodingpie
https://ift.tt/34tBONV
New post on /r/flutterdev subreddit:

Generate flutter code from Typescript!!
Build flutter widget from typescript. (general purpose)https://github.com/bridgedxyz/flutter-builderStar it on github if you like it​Here is simple example.​const container = new Container(
{
width: Double.infinity,
height: null,
decoration: new BoxDecoration({
border: Border.all({
color: Color.fromHex("#BBBBBB"),
width: 12
}),
shape: BoxShape.circle,
borderRadius: BorderRadius.only({ topLeft: Radius.circular(12) }),
gradient: new LinearGradients({
colors: [
Color.fromHex("#AAAAAA"),
]
})
}),
}
);
const built = container.build()
// console.log(container)
console.log(built.finalize());​gives youContainer(
width: double.infinity,
height: null,
decoration: BoxDecoration(
border: Border.all(
color: Color(
0xbbbbbb,
),
width: 12,
),
borderRadius: BorderRadius.circular(
topLeft: Radius.circular(
12,
),
),
gradient: LinearGradients(
colors: [
Color(
0xaaaaaa,
),
],
),
shape: BoxShape.circle,
),
);

October 06, 2020 at 03:28PM by softmarshmallow
https://ift.tt/2SsWQqi
New post on Flutter Dev Google group:

Display Network Image in Flutter - EasyFlutter
Released First Article on Flutter Tutorial series. Article: https://ift.tt/3d1V9cE

October 06, 2020 at 04:09PM by Easy Flutter
https://ift.tt/2SydKUg
New post on /r/flutterdev subreddit:

Giveaway: 2x Free Ticket for DroidCon EMEA
I got a lot of useful feedback regards my testing tool from you folks and I want to say thank you!Now I got 2 spare tickets for Thu+Fri this week:
https://www.online.droidcon.com/emea2020First come, first served...

October 06, 2020 at 04:45PM by stoefln
https://ift.tt/3d4QoPR
New post on /r/flutterdev subreddit:

İs flutter enough to build nice look apo
Guys ı want to make app which look very nice. For build nicelook app do ı need to learn another program. Adobe xd or something else. When ı learn flutter and dart can ı do nice look app ?

October 06, 2020 at 05:30PM by Strofex11
https://ift.tt/3nmQKFY