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

RT @googledevs: 💙🚀 We are so excited to announce the launch of the @FlutterDev Meetup Network! The Flutter team will now provide resources to #FlutterDev Meetup organizers around the world so they can keep hosting awesome events. Learn more about meetups near you 👉 https://t.co/mziHPV3oPe https://t.co/LLLA7JX7fg— Flutter (@FlutterDev) Oct 1, 2021

October 01, 2021 at 09:00PM
https://twitter.com/FlutterDev/status/1444014250633138179
New post on /r/flutterdev subreddit:

Anyone here watch the Dark Novice to Expert youtube playlist?
edit: DART*** Novice to Expert youtube playlist (ohmygosh)It is with Tiberiu Potec (Flutterly):https://www.youtube.com/watch?v=uZvoTCSsfjo&list=PLptHs0ZDJKt_fLp8ImPQVc1obUJKDSQL7&index=1I like how he started making it in April so it is better updated than a lot of other Dart tutorials. I'm watching it in conjunction with the App Brewery videos because I know they are a little outdated (and I think the Dart Novice to Expert playlist is less focused on Flutter so it's a little more focused on the nitty gritty of the dart language).

October 01, 2021 at 11:07PM by refreshman1
https://ift.tt/3uJVbPz
New post on /r/flutterdev subreddit:

Are these specs sufficient enough?
Apple MacBook Pro Retina MF843LL/A 13” Laptop, 3.1GHz Intel Core i7, 16GB Memory, 512GB SSD, macOS 10.14 MojaveI know it’s not a M1 but do you guys think it’s okay?

October 01, 2021 at 11:47PM by CalitaWyatt4
https://ift.tt/2Ya9TDD
New post on /r/flutterdev subreddit:

Layouts: Make a container as big as another widget
I'm trying to create a widget in flutter that highlights its contents when mouse is hovered over it. It takes a child widget in constructor, and renders it with a translucent screen on top:``` import 'package:flutter/material.dart';class HoverHighlight extends StatefulWidget { final Widget child;const HoverHighlight({Key? key, required this.child}) : super(key: key);@override _HoverHighlightState createState() => _HoverHighlightState(); }class _HoverHighlightState extends State<HoverHighlight> { bool isHovering = false;@override Widget build(BuildContext context) { return MouseRegion( onEnter: () => setHovering(true), onExit: () => setHovering(false), cursor: SystemMouseCursors.click, child: Stack( children: [ widget.child, AnimatedOpacity( duration: Duration(milliseconds: 150), opacity: isHovering ? 0.1 : 0, child: Container( constraints: , decoration: BoxDecoration( color: Colors.red, ), ), ), ], ), ); }void setHovering(bool isHovered) { print(isHovered); setState(() { this.isHovering = isHovered; }); } } ```This widget does not work because the size of the translucent container is zero, and I can't figure out how to size it correctly. How do I create a widget that does what I want?You can use this app to test the widget:``` class TestPage extends StatelessWidget { @override Widget build(BuildContext context) { return Column( children: [ HoverHighlight( child: Container( width: 100, height: 100, decoration: BoxDecoration( color: Colors.blue, ), ), ) ], ); } }void main() { runApp(MaterialApp(home: TestPage())); } ```

October 01, 2021 at 11:34PM by canbweave
https://ift.tt/3uyU9Ww
New post on /r/flutterdev subreddit:

Will android/iOS native development be here for ever ?
I am working as a flutter developer. Should I become a master at flutter or will I have to learn kotlin/swift/android dev one day?So far I am loving flutter and not sure if I would enjoy programming in any other language/framework

October 02, 2021 at 12:15AM by mryoloo
https://ift.tt/3ipd7Km
New post on /r/flutterdev subreddit:

Can I also showcase some of my flutter package in hacktoberfest?
I have a some flutter package where few things are just like difficult for me. So it's possible for a normal users they could also added their projects on hacktoberfest and make those features as a issues so other will work on it.

October 02, 2021 at 06:03AM by Prashant_4200
https://ift.tt/3mcmga2
New post on /r/flutterdev subreddit:

Food delivery app ui with animation .
https://youtube.com/shorts/-sVOAAbDqpo?feature=share

October 02, 2021 at 07:13AM by base77
https://ift.tt/3l1rrdo
New post on /r/flutterdev subreddit:

Filling out Web Forms using Flutter
Hello,I am trying to build a wrapper around a basic web form, the web form also has captcha which I have to automatically solve in one way or another.Basically when my app loads it should open the web page in the background (Nothing shown to the user) once the web page is open, my app displays a custom designed form to the user in my Flutter app which contains the same fields of the web form.When the user fills in the form in my flutter app, it should transfer all of the data into the web form and click submit on the web form automatically.I was wondering whether this is possible in Flutter or not?

October 02, 2021 at 07:56AM by iEmerald
https://ift.tt/3uwcXph
New post on /r/flutterdev subreddit:

Do someone know how I can create something similar? It will be used to filter exercises by muscle groups. Each of the different zones must be clickable/selectable.
https://ift.tt/3uBsfJs

October 02, 2021 at 09:48AM by ultra_mario
https://ift.tt/3zY3CaF
New post on /r/flutterdev subreddit:

Group chat is added to Flutter MQTT chat client 🎉
Hello everyone,I am working on a flutter chat client using MQTT protocol, the protocol is showing amazing quality and stability! It is super fast and as I know it’s already used as chat protocol by Facebook Messenger.Recently I added group chat to the app (now users can create groups and start group messages. Remove users from existing groups is under development).You can always check my work and give some feedback, it will be helpful.Repo: Check the repo here

October 02, 2021 at 02:06PM by Coffee__2__Code
https://ift.tt/3irjLQ7
New post on /r/flutterdev subreddit:

Introducing paginable 🎉🎉
A Flutter package which make pagination easier. Don't forget to check it out.https://pub.dev/packages/paginable

October 02, 2021 at 05:14PM by Chinky_Sight
https://ift.tt/3otxcTh
New post on /r/flutterdev subreddit:

How to find an experienced Flutter/Mobile developer for a startup?
I am recruiting a team for a meaningful startup idea that is dedicated to helping music students in their everyday practice, skills, compositions. It is not about tutoring/teaching, but rather about motivation, productivity, analysis.I have a world-class ML researcher on my team, but we need also a world-class Flutter developer, with high-class engineering skills. Maybe You or Your friend would be interested to join us. It's a chance to unleash all the potential for self-realization and make a revolutionary impact in music edu.
It's Instric.com for some info.

October 02, 2021 at 08:42PM by grinvaldsjanis
https://ift.tt/2YdKxnF
New post on /r/flutterdev subreddit:

How do you track down device-specific bugs?
I recentlty started advertising for an app I created, most users are really happy with it, but a small percentage experience the same bug that causes a fatal crash once they reach the home page (after signing up and going through an account setup screen). I have no idea what could be causing that. I checked the data they entered during account setup and there is nothing wrong with it.They all have Android phones, of various models: Samsung Galaxy J4 , Samsung A6+ , Galaxy  J7, Moto G5 plus, Moto G6 Play.A big mistake I did was not having Crashlytics installed from the start. It is now installed and working, but it doesn't seem to be picking up on that particular crash. Several users have confirmed with me having the current version (with Crashlytics) on their phone, and went through the process causing the crash several times, and it didn't send a report.I'm a bit at a loss, this issue is very annoying and I don't know where to look for a solution. One user has already left a one-star review because of it. And I feel bad for those people.

October 02, 2021 at 09:42PM by king-louis-rds
https://ift.tt/2YdlBNm
New post on /r/flutterdev subreddit:

Flutter freelancing? What do I need to know and what kind of portfolio pieces would make one an attractive hire?
I've never done any coding freelance work before but I'm interested in potentially doing some Flutter freelancing. Is there like a list of things/concepts I should be familiar with before I look presentable as a freelancer?I don't have much in the way of polished projects to show and I'm looking to spruce up my GitHub with more "freelance attractive" projects to make myself look hirable. Any suggestions for smaller scope projects that are a good way to show off certain projects?If you've done any Flutter freelance work, I'd love to get some input!

October 02, 2021 at 11:09PM by emililililily
https://ift.tt/3D7tpPW