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
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
Google Developers Blog
Introducing the Flutter Meetup Network!
The Flutter Meetup Network (FMN) is an international network of Meetup groups united by their enthusiasm for Flutter.
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
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
YouTube
Introduction to Dart - From Novice to Expert Tutorial Series
Hi there!
In this short video I'll introduce you to the brand new series in which I'll make you a Dart Expert.
All animations were done in VideoScribe, you can try it by clicking my affiliate link --- https://www.awin1.com/cread.php?awinmid=8913&awinaffid=941643…
In this short video I'll introduce you to the brand new series in which I'll make you a Dart Expert.
All animations were done in VideoScribe, you can try it by clicking my affiliate link --- https://www.awin1.com/cread.php?awinmid=8913&awinaffid=941643…
New post on /r/flutterdev subreddit:
Building No Signal App using Flutter and Appwrite
https://ift.tt/3B3nj2m
October 01, 2021 at 10:18PM by eldadfux
https://ift.tt/3oudGWS
Building No Signal App using Flutter and Appwrite
https://ift.tt/3B3nj2m
October 01, 2021 at 10:18PM by eldadfux
https://ift.tt/3oudGWS
Medium
Building No Signal App using Flutter and Appwrite
Let’s do Something creative and make a next level Flutter App. We are going to make No Signal — A chatting app inspired by Signal. We are…
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
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
reddit
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 Mojave I know it’s not a M1 but do...
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
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
reddit
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...
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
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
reddit
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...
New post on /r/flutterdev subreddit:
MERCHANT APPLICATION with (FLUTTER STRIPE). BUY AND SELL (MARKETPLACE)
https://youtube.com/watch?v=Os5DXW4vNt0&feature=share
October 02, 2021 at 01:24AM by Kickbykick
https://ift.tt/3FbfppR
MERCHANT APPLICATION with (FLUTTER STRIPE). BUY AND SELL (MARKETPLACE)
https://youtube.com/watch?v=Os5DXW4vNt0&feature=share
October 02, 2021 at 01:24AM by Kickbykick
https://ift.tt/3FbfppR
YouTube
MERCHANT APPLICATION with (FLUTTER + STRIPE CONNECT). BUY AND SELL (MARKETPLACE)
If you liked the video, subscribe, leave a like, share the video and put on your notification.
Note: that this is a barebones merchant application right now. The request times from the web could be made faster, cleaner database structure could be applied…
Note: that this is a barebones merchant application right now. The request times from the web could be made faster, cleaner database structure could be applied…
New post on /r/flutterdev subreddit:
Neumorphic Designed YouTube Downloader app built-in Flutter
https://www.youtube.com/watch?v=bK68EV-VIyI
October 02, 2021 at 02:29AM by Romjan_D
https://ift.tt/3A1zPOv
Neumorphic Designed YouTube Downloader app built-in Flutter
https://www.youtube.com/watch?v=bK68EV-VIyI
October 02, 2021 at 02:29AM by Romjan_D
https://ift.tt/3A1zPOv
YouTube
YouTube Downloader App Demo (Download link)
Y2D a YouTube downloader app for android. This is a fully open-source app built in using Flutter. You can download high-quality YouTube video, audio, thumbnail through this app.
GitHub/Download Link: https://github.com/RomjanHossain/ytdownload-flutter
…
GitHub/Download Link: https://github.com/RomjanHossain/ytdownload-flutter
…
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
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
reddit
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...
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
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
YouTube
Food delivery app ui like never seen before 🤯 #flutter #uiux #animation
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
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
reddit
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...
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
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
Samsungcloud
Link Sharing
()
New post on /r/flutterdev subreddit:
How to build a custom calendar in Flutter
https://ift.tt/2Y9CLLP
October 02, 2021 at 11:08AM by sulli110
https://ift.tt/3B6Zoik
How to build a custom calendar in Flutter
https://ift.tt/2Y9CLLP
October 02, 2021 at 11:08AM by sulli110
https://ift.tt/3B6Zoik
LogRocket Blog
How to build a custom calendar in Flutter - LogRocket Blog
Learn how to create a calendar for scheduling events with the Flutter date and time picker and TableCalendar widget.
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
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
GitHub
GitHub - WahidNasri/flutter-mqtt-chat-client: A Chat app developed with Flutter, it uses MQTT protocol
A Chat app developed with Flutter, it uses MQTT protocol - WahidNasri/flutter-mqtt-chat-client
New post on /r/flutterdev subreddit:
Do A Flutter UX Branding Rail Navigation Experiment
https://ift.tt/3mjeknt
October 02, 2021 at 03:44PM by fredgrott
https://ift.tt/3D8Nd5w
Do A Flutter UX Branding Rail Navigation Experiment
https://ift.tt/3mjeknt
October 02, 2021 at 03:44PM by fredgrott
https://ift.tt/3D8Nd5w
Medium
Do A Flutter UX Branding Rail Navigation Experiment
Am I crazy? Might be Kai Krause crazy, but that may be because I am half German(I keep forgetting you guys and gals are not my age, see…
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
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
Dart packages
paginable | Flutter Package
Paginable is a Flutter package which makes pagination easier by providing more functionality on top of native widgets.
New post on /r/flutterdev subreddit:
Beginner Flutter Project - 2dDPong Game
https://ift.tt/2Ybxbs4
October 02, 2021 at 08:49PM by rrtutors
https://ift.tt/3mgiexv
Beginner Flutter Project - 2dDPong Game
https://ift.tt/2Ybxbs4
October 02, 2021 at 08:49PM by rrtutors
https://ift.tt/3mgiexv
Rrtutors
2 Beginner Flutter Project - Pong Game
Flutter Beginner projects, create a pong game with flutter using animations,animation controllers
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
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
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
reddit
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...
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
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
reddit
Flutter freelancing? What do I need to know and what kind of...
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...
New post on /r/flutterdev subreddit:
Flutter UI NFT Profile App Tutorial | App from Scratch Part 2
https://youtu.be/tp1MkIxPW2o
October 03, 2021 at 01:12AM by Confident-Basket-896
https://ift.tt/3B5GatA
Flutter UI NFT Profile App Tutorial | App from Scratch Part 2
https://youtu.be/tp1MkIxPW2o
October 03, 2021 at 01:12AM by Confident-Basket-896
https://ift.tt/3B5GatA
YouTube
Flutter UI NFT Profile App Tutorial | App from Scratch Part 2
Welcome to my #Flutter #UI from Scratch tutorial series. In this video, we will build the NFT profile app UI and you will learn how to build this complex flu...