New post on Flutter Dev Google group:
google tag manager setup (gtm) on flutter mobile
Hello everyone, does anyone use google tag manager in a flutter application? if so, do you have a guide to follow to perform the setup? Thank you
September 02, 2020 at 02:56PM by Angelo Curti Giardina
https://ift.tt/34WtF6d
google tag manager setup (gtm) on flutter mobile
Hello everyone, does anyone use google tag manager in a flutter application? if so, do you have a guide to follow to perform the setup? Thank you
September 02, 2020 at 02:56PM by Angelo Curti Giardina
https://ift.tt/34WtF6d
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
New video of the series out 🔥️ Let me know what I can improve, thank you so much for the support 😃️
https://www.youtube.com/watch?v=HaHbQOZfP3s
September 02, 2020 at 03:13PM by workflow_2
https://ift.tt/3lHLtbn
New video of the series out 🔥️ Let me know what I can improve, thank you so much for the support 😃️
https://www.youtube.com/watch?v=HaHbQOZfP3s
September 02, 2020 at 03:13PM by workflow_2
https://ift.tt/3lHLtbn
YouTube
- YouTube
New post on /r/flutterdev subreddit:
How much can you charge for a flutter app?
Hey,I am about to sell my first app, but i am unsure of what the price should be.How much do you guys charge for apps, and what drives the price up?
September 02, 2020 at 03:39PM by will1761
https://ift.tt/3bkXJKf
How much can you charge for a flutter app?
Hey,I am about to sell my first app, but i am unsure of what the price should be.How much do you guys charge for apps, and what drives the price up?
September 02, 2020 at 03:39PM by will1761
https://ift.tt/3bkXJKf
reddit
How much can you charge for a flutter app?
Hey, I am about to sell my first app, but i am unsure of what the price should be. How much do you guys charge for apps, and what drives the...
New post on /r/flutterdev subreddit:
Fitness Counter is selected for Tensorflow User Group India Summit.
Just a week ago, I had posted on this channel for feedback regarding a project I had been working on.The Summit being round the corner, they loved how innovative yet simple the project was. and I was surprised as to the response it got as well during the dry run.Do checkout the project and dabble in it to raise issues. Currently in active development.https://github.com/AshwinB-hat/Fitness_CounterTensorflow Lite built on top of Flutter to do Pose Tracking for Exercises.
September 02, 2020 at 04:40PM by brokemybackagain
https://ift.tt/34WUWFL
Fitness Counter is selected for Tensorflow User Group India Summit.
Just a week ago, I had posted on this channel for feedback regarding a project I had been working on.The Summit being round the corner, they loved how innovative yet simple the project was. and I was surprised as to the response it got as well during the dry run.Do checkout the project and dabble in it to raise issues. Currently in active development.https://github.com/AshwinB-hat/Fitness_CounterTensorflow Lite built on top of Flutter to do Pose Tracking for Exercises.
September 02, 2020 at 04:40PM by brokemybackagain
https://ift.tt/34WUWFL
GitHub
GitHub - AshwinB-hat/Fitness_Counter: A Repetition Counter Application Built in Flutter on top of TensorFlow Lite PoseNet.
A Repetition Counter Application Built in Flutter on top of TensorFlow Lite PoseNet. - AshwinB-hat/Fitness_Counter
New post on /r/flutterdev subreddit:
Blur on AlertDialog's background
I'm trying to do a blur effect on the AlertDialog background. I continued using the BackdropFilter.blur() class, bit it is not doing the effect I expected. It is not blurring anything.I'm a begginer in Flutter. The code:
September 02, 2020 at 04:19PM by AikoKikuchi
https://ift.tt/2EUzl63
Blur on AlertDialog's background
I'm trying to do a blur effect on the AlertDialog background. I continued using the BackdropFilter.blur() class, bit it is not doing the effect I expected. It is not blurring anything.I'm a begginer in Flutter. The code:
import 'dart:ui';
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
home: MyApp(),
));
}
class MyApp extends StatefulWidget {
u/override
_State createState() => _State();
}
class _State extends State<MyApp> {
bool isSwitched = false;
bool isVisible = true;
u/override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Blur'),
centerTitle: true,
),
body: ClipRect(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 500, sigmaY: 500),
child: Container(
width: 500,
height: 500,
child: Column(
children: [
Text('Hello World'),
],
),
),
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
infoButton();
},
child: Icon(Icons.info),
),
);
}
Future infoButton() async {
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
content: Wrap(
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text("TITLE"),
Padding(
padding: EdgeInsets.only(top: 24.00),
child: Text(
'Alert Dialog',
textScaleFactor: 1.3,
),
),
Padding(
padding: EdgeInsets.fromLTRB(0, 34, 0, 10),
child: Divider(height: 0.75, color: Colors.grey)),
FlatButton(
padding: EdgeInsets.zero,
child:
Text("ok!", style: TextStyle(color: Colors.orange)),
onPressed: () {
Navigator.pop(context);
},
),
],
),
],
),
);
},
);
}
}
September 02, 2020 at 04:19PM by AikoKikuchi
https://ift.tt/2EUzl63
reddit
Blur on AlertDialog's background
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
4 SIMPLE FEATURES YOUR FLUTTER APP IS MISSING
https://www.youtube.com/watch?v=rQYWHgGIUuQ&feature=share
September 02, 2020 at 06:17PM by Kickbykick
https://ift.tt/2EHGiHW
4 SIMPLE FEATURES YOUR FLUTTER APP IS MISSING
https://www.youtube.com/watch?v=rQYWHgGIUuQ&feature=share
September 02, 2020 at 06:17PM by Kickbykick
https://ift.tt/2EHGiHW
YouTube
4 SIMPLE FEATURES YOUR FLUTTER APP IS MISSING
All code
https://github.com/Kickbykick/Four-Important-Flutter-Features
Splash Screen Articles
https://flutter.dev/docs/development/ui/advanced/splash-screen#:~:text=To%20do%20so%2C%20open%20the,to%20the%20LaunchImage%20image%20set.
https://medium.com/flutter…
https://github.com/Kickbykick/Four-Important-Flutter-Features
Splash Screen Articles
https://flutter.dev/docs/development/ui/advanced/splash-screen#:~:text=To%20do%20so%2C%20open%20the,to%20the%20LaunchImage%20image%20set.
https://medium.com/flutter…
New post on Flutter Dev Google group:
textField follow cursor
Every time a new line is created in my textField it will jump to the first line & you will be typing blind without seeing what you type. Code: child: Container( height: 50, margin: EdgeInsets.fromLTRB(5, 0, 0, 6), decoration: BoxDecoration( border: Border.all(color: Colors.black),
September 02, 2020 at 06:38PM by barak taya
https://ift.tt/2Z1rYRc
textField follow cursor
Every time a new line is created in my textField it will jump to the first line & you will be typing blind without seeing what you type. Code: child: Container( height: 50, margin: EdgeInsets.fromLTRB(5, 0, 0, 6), decoration: BoxDecoration( border: Border.all(color: Colors.black),
September 02, 2020 at 06:38PM by barak taya
https://ift.tt/2Z1rYRc
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Use Basic Photo Filters (Tutorial)
https://www.youtube.com/watch?v=v3doTuJF-lE
September 02, 2020 at 07:00PM by JohannesMilke
https://ift.tt/31RJYQ3
Use Basic Photo Filters (Tutorial)
https://www.youtube.com/watch?v=v3doTuJF-lE
September 02, 2020 at 07:00PM by JohannesMilke
https://ift.tt/31RJYQ3
YouTube
Flutter Tutorial - Photo Filters - Basic
Make use of basic filters such as black & white, sepia, etc. for the images in your Flutter app.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source code: https://github.com/JohannesMilke/photo_ba…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source code: https://github.com/JohannesMilke/photo_ba…
New post on /r/flutterdev subreddit:
Flutter Web Chat App
https://www.youtube.com/watch?v=ZCcSqs4fw5w
September 02, 2020 at 06:55PM by rishabh9012
https://ift.tt/2EHezah
Flutter Web Chat App
https://www.youtube.com/watch?v=ZCcSqs4fw5w
September 02, 2020 at 06:55PM by rishabh9012
https://ift.tt/2EHezah
YouTube
Chat App UI Flutter Web 2020 | Part 1
Special thanks to Kartik Tyagi
GitHub: https://github.com/rishabhdavesar/ChatAppUI
Fiverr : https://www.fiverr.com/jovle_tech
insta: rishabh_customs
Subscribe if you want to.
GitHub: https://github.com/rishabhdavesar/ChatAppUI
Fiverr : https://www.fiverr.com/jovle_tech
insta: rishabh_customs
Subscribe if you want to.
New post on /r/flutterdev subreddit:
My latest flutter app is live!
Just completed and launched http://dadjokebattle.com - in search of the best “Dad Joke” ever!Available on iOS and android. Check it out.
September 02, 2020 at 06:35PM by becomplete3
https://ift.tt/2QOBB1a
My latest flutter app is live!
Just completed and launched http://dadjokebattle.com - in search of the best “Dad Joke” ever!Available on iOS and android. Check it out.
September 02, 2020 at 06:35PM by becomplete3
https://ift.tt/2QOBB1a
Dadjokebattle
Dad Joke Battle
In search of the best dad joke of all time!
New post on /r/flutterdev subreddit:
[META] Here's why I think we should allow people to share non open-source apps on the subreddit for now
Been following the subreddit for a while now, and I'd like to think I have a decent amount of experience with Flutter, having built a few full-fledged apps by now with over 300k+ installs ( Not gonna plug any of those here now )Now while I appreciate the fact that apps submitted here must be open source, and that helps people learn with examples and code, I think Flutter is at a point where it's growing and I want to see some more commercial apps built using this. Most of the open-source apps I see submitted here are very learner apps or simple ones with basic functionality, and while they might help those starting out, I'm sure those with experience want to see something new, to see what Flutter is really capable of, and that might spark more ideas.There could be newer rules implemented for non open-sourced apps like the OP has to explain the difficulties they faced and how they overcame that and should answer questions in the comments if any ( The specifics of the rules can be ironed out with time )Most importantly, I think a lot of apps built with Flutter for companies or even as side projects need not necessarily be open source, but sharing them will help the platform grow. I know there are other sites like itsallwidgets where you can share them, but it's not a platform for discussion.I would love to hear your thoughts on this.
September 02, 2020 at 07:16PM by Ashwin110
https://ift.tt/32SDmjp
[META] Here's why I think we should allow people to share non open-source apps on the subreddit for now
Been following the subreddit for a while now, and I'd like to think I have a decent amount of experience with Flutter, having built a few full-fledged apps by now with over 300k+ installs ( Not gonna plug any of those here now )Now while I appreciate the fact that apps submitted here must be open source, and that helps people learn with examples and code, I think Flutter is at a point where it's growing and I want to see some more commercial apps built using this. Most of the open-source apps I see submitted here are very learner apps or simple ones with basic functionality, and while they might help those starting out, I'm sure those with experience want to see something new, to see what Flutter is really capable of, and that might spark more ideas.There could be newer rules implemented for non open-sourced apps like the OP has to explain the difficulties they faced and how they overcame that and should answer questions in the comments if any ( The specifics of the rules can be ironed out with time )Most importantly, I think a lot of apps built with Flutter for companies or even as side projects need not necessarily be open source, but sharing them will help the platform grow. I know there are other sites like itsallwidgets where you can share them, but it's not a platform for discussion.I would love to hear your thoughts on this.
September 02, 2020 at 07:16PM by Ashwin110
https://ift.tt/32SDmjp
reddit
[META] Here's why I think we should allow people to share non...
Been following the subreddit for a while now, and I'd like to think I have a decent amount of experience with Flutter, having built a few...
New post on Flutter Dev Google group:
Animation help needed for text feild
I want to achieve such animation in flutter. The main problem is when I open a keyboard to enter in text feild, i have to make the screen scrollable which is not what I want. I want to only show the tapped text feild in focus as a pop up (in a separate screen with the main screen as background)
September 02, 2020 at 07:46PM by ahmed nawaz
https://ift.tt/2EY7nGw
Animation help needed for text feild
I want to achieve such animation in flutter. The main problem is when I open a keyboard to enter in text feild, i have to make the screen scrollable which is not what I want. I want to only show the tapped text feild in focus as a pop up (in a separate screen with the main screen as background)
September 02, 2020 at 07:46PM by ahmed nawaz
https://ift.tt/2EY7nGw
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
Flutter 1.20.3 hotfix released to the stable channel.
Hi, Flutter 1.20.3 has been released to stable. This is a hotfix release on the 1.20 branch and also includes a hotfixed Dart 2.9.2 version. Changes for this build are listed below and are available on the Flutter Wiki here: Hotfixes to the Stable Channel
Flutter 1.20.3 hotfix released to the stable channel.
Hi, Flutter 1.20.3 has been released to stable. This is a hotfix release on the 1.20 branch and also includes a hotfixed Dart 2.9.2 version. Changes for this build are listed below and are available on the Flutter Wiki here: Hotfixes to the Stable Channel
New post on /r/flutterdev subreddit:
Here is an app I created using Flutter. It's called Speed Assistant and it helps people keeping a constant speed while running or walking
https://ift.tt/2EZ6v4t
September 02, 2020 at 09:15PM by sfabio1
https://ift.tt/3hSFu15
Here is an app I created using Flutter. It's called Speed Assistant and it helps people keeping a constant speed while running or walking
https://ift.tt/2EZ6v4t
September 02, 2020 at 09:15PM by sfabio1
https://ift.tt/3hSFu15
New post on /r/flutterdev subreddit:
What is Flutter and Dart?
https://ift.tt/34U3P2W
September 03, 2020 at 12:28AM by acctgen1
https://ift.tt/3jItWhc
What is Flutter and Dart?
https://ift.tt/34U3P2W
September 03, 2020 at 12:28AM by acctgen1
https://ift.tt/3jItWhc
New post on /r/flutterdev subreddit:
Flutter Reddit App (Looking for contributors!!)
Hey!I'm currently developing an open source Flutter Reddit app. If you are interested in contributing to an open source project, please consider mine! I'll be actively checking pull request and giving insightful feedback (if it requires any).This is an old video of the app, but here is a quick preview https://www.youtube.com/watch?v=rVWFXjuiuVAThere are also some outdated images in the Readme https://github.com/mzegar/RetterLastly, I'll be updating this build on the play store every so often https://play.google.com/store/apps/details?id=com.mzegar.flutterredditPlease consider contributing! https://github.com/mzegar/Retter
September 03, 2020 at 01:30AM by piano-person
https://ift.tt/3lKcY4c
Flutter Reddit App (Looking for contributors!!)
Hey!I'm currently developing an open source Flutter Reddit app. If you are interested in contributing to an open source project, please consider mine! I'll be actively checking pull request and giving insightful feedback (if it requires any).This is an old video of the app, but here is a quick preview https://www.youtube.com/watch?v=rVWFXjuiuVAThere are also some outdated images in the Readme https://github.com/mzegar/RetterLastly, I'll be updating this build on the play store every so often https://play.google.com/store/apps/details?id=com.mzegar.flutterredditPlease consider contributing! https://github.com/mzegar/Retter
September 03, 2020 at 01:30AM by piano-person
https://ift.tt/3lKcY4c
YouTube
Retter - Flutter Reddit App Demo (OUTDATED)
NOTE: This is a demo recorded on a simulator. There is a massive reduction in performance as compared to the compiled version. http://www.github.com/mzegar/retter
New post on /r/flutterdev subreddit:
Flutter e commerce UI Kit - Sign up Validation
https://www.youtube.com/watch?v=USe3SWkvyQU&feature=share
September 03, 2020 at 02:41AM by dickyrey
https://ift.tt/31Tkodf
Flutter e commerce UI Kit - Sign up Validation
https://www.youtube.com/watch?v=USe3SWkvyQU&feature=share
September 03, 2020 at 02:41AM by dickyrey
https://ift.tt/31Tkodf
YouTube
Flutter e commerce UI Kit - Sign up Validation
#Flutter #MobileApps #E-Commerce #UIIn this video series, we will build the e-Commerce UI Kit application.!!! Purchase Our Flutter UI Kit !!!Flutte...
New post on Flutter Dev Google group:
How would I map or connect variables to their respective toggle buttons?
Hi, I have a collection of 12 images that I want to display on the screen as the user presses its respective toggle button. For simplicity, I'll say that I have 3 images: img.Image image1 = img.decodeImage(_imageFile.readAsBytesSync()); img.Image image2 = img.decodeImage(_imageFile2.rea
September 03, 2020 at 02:17AM by Faraz Khan
https://ift.tt/2QSyFAw
How would I map or connect variables to their respective toggle buttons?
Hi, I have a collection of 12 images that I want to display on the screen as the user presses its respective toggle button. For simplicity, I'll say that I have 3 images: img.Image image1 = img.decodeImage(_imageFile.readAsBytesSync()); img.Image image2 = img.decodeImage(_imageFile2.rea
September 03, 2020 at 02:17AM by Faraz Khan
https://ift.tt/2QSyFAw
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
Need help on updating chat conversation status
Dear all, I building a chat app I used flutter and NodeJS with SocketIO for chat sending message is working well but I somehow stuck at updating the status of the message like "Not send", "sent", "delivered", "read" in real time. Could you please anyone guide me which algorithm need to be use.
September 03, 2020 at 03:41AM by CeebLaj Thoj
https://ift.tt/3bmRRAb
Need help on updating chat conversation status
Dear all, I building a chat app I used flutter and NodeJS with SocketIO for chat sending message is working well but I somehow stuck at updating the status of the message like "Not send", "sent", "delivered", "read" in real time. Could you please anyone guide me which algorithm need to be use.
September 03, 2020 at 03:41AM by CeebLaj Thoj
https://ift.tt/3bmRRAb
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Flutter Chathead Plugin with dynamic content.
Hello! When i started with flutter a year ago, i always love how messenger implements the functionality of a chathead, right now im working on a plugin that have all those features, and including customization of icons, shadow gradient color, close icon and build any layout inside the container. Currently this is my progress. however im having some issues with sending image from dart plugin to kotlin. Also the code is available on github! :) so if you like it please feel free to rate or open a pull request with any cool feature that you have :DFloatyChathead_repo
September 03, 2020 at 04:37AM by Ghost_InTheDart
https://ift.tt/32SKMTP
Flutter Chathead Plugin with dynamic content.
Hello! When i started with flutter a year ago, i always love how messenger implements the functionality of a chathead, right now im working on a plugin that have all those features, and including customization of icons, shadow gradient color, close icon and build any layout inside the container. Currently this is my progress. however im having some issues with sending image from dart plugin to kotlin. Also the code is available on github! :) so if you like it please feel free to rate or open a pull request with any cool feature that you have :DFloatyChathead_repo
September 03, 2020 at 04:37AM by Ghost_InTheDart
https://ift.tt/32SKMTP
GitHub
GitHub - Crdzbird/floaty_chathead: Flutter Plugin to create your own floating chathead
Flutter Plugin to create your own floating chathead - GitHub - Crdzbird/floaty_chathead: Flutter Plugin to create your own floating chathead
New post on /r/flutterdev subreddit:
Mac OSX vm installer for Linux users written in dart.
For Linux users needing to test their flutter apps under iOS this installer creates an OSX vm on your Linux box.It's available on pub.dev and can be downloaded and run with;
September 03, 2020 at 06:58AM by relf108
https://ift.tt/2QRVPHv
Mac OSX vm installer for Linux users written in dart.
For Linux users needing to test their flutter apps under iOS this installer creates an OSX vm on your Linux box.It's available on pub.dev and can be downloaded and run with;
pub global activate osx_kvm_installer
osx_kvm_installer
Check it out on GitHub if you like as well at OSX-KVM-installerNote, at this point it's using the apt package manager to install dependencies so it will only function if you are using a Debian based distributionHope you guys give it a try and let me know how you like it.September 03, 2020 at 06:58AM by relf108
https://ift.tt/2QRVPHv
Dart packages
osx_kvm_installer | Dart Package
A cli based application which automates the installation and installation preperation steps required for the OSX-KVM project.