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

Complexity of cross platform styling
I am looking to build an application, and I’ve noticed that even if i use material app on an iPhone, I get some native styles, such as the placement of text in the app bar, and page transitions.That said, do you guys prefer to deal with the duplication of code for a native feel, or just stick to material and throw in a Cupertino widget here and there?

October 01, 2021 at 04:51PM by Accelerator213
https://ift.tt/3FcY6Fg
New post on /r/flutterdev subreddit:

Writing server side Dart code - is it worth it?
https://ift.tt/3zUY8O4

October 01, 2021 at 06:45PM by enyovelcora
https://ift.tt/3l19fAK
New tweet from FlutterDev:

💙🚀 Introducing the Flutter Meetup Network! The Flutter team will now provide resources to Flutter Meetup organizers around the world, so they can keep hosting awesome and engaging events. Learn more and join 👉 https://t.co/bhCMJPWblk https://t.co/KsUUcTBP1e— Flutter (@FlutterDev) Oct 1, 2021

October 01, 2021 at 07:00PM
https://twitter.com/FlutterDev/status/1443984065942757407
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