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

Connecting Flutter Mobile Apps to churro ETL on Kubernetes
Here is a blog I wrote on some new churro features, namely creating pipelines that accept http POST messages from IoT or Mobile apps. https://medium.com/@churromechanic/churro-flutter-to-etl-example-a5913d5d801 I'm a total newbie at writing Flutter apps, but after a couple of days of hacking using flutter, I was able to create an app that would invoke http POSTS, sending data/GPS coordinates from a phone app to a Kubernetes based ETL app like churro.

October 01, 2021 at 08:10PM by churromechanic
https://ift.tt/3zYBMLp
New post on /r/flutterdev subreddit:

Flutter Developer Weekly Newsletter - Issue #28 is LIVE! This issue covers lots of Flutter tips and tricks! :-)
https://ift.tt/3uwqNrs

October 01, 2021 at 09:10PM by FlutterDevWeekly
https://ift.tt/3A5ZNAd
New post on /r/flutterdev subreddit:

Adaptive NAvigation the SliverAppBAr version
Most of you know of the adaptive scaffold and adaptive bar in the web dashboard experimental sample in the flutter samples.And some of you know the update of that in the Material.io team did.​But there is no version where the SliverAppBar Is used. I would think that would be the ideal use case of when to use the slim Rail Nav left side menu in tablet apps.​Who would like a version of that?

October 01, 2021 at 09:02PM by fredgrott
https://ift.tt/3kYCPGV
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