New post on Flutter Dev Google group:
Latest Cross-Platform App Development Technology- Flutter
Why target on a particular device, when you can make all your devices compatible with a single application? The Flutter App Development of Data EximIT allows you to own an innovative application that is compatible with multiple operating systems. 1. Convenient coding to suit the concept 2.
June 20, 2019 at 01:33PM by Data EximIT
http://bit.ly/2Xm02YR
Latest Cross-Platform App Development Technology- Flutter
Why target on a particular device, when you can make all your devices compatible with a single application? The Flutter App Development of Data EximIT allows you to own an innovative application that is compatible with multiple operating systems. 1. Convenient coding to suit the concept 2.
June 20, 2019 at 01:33PM by Data EximIT
http://bit.ly/2Xm02YR
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:
Sidescrolling Widgets
Hi Community I havea problem that is driving me nuts in Flutter. I have a layout that requires some widget like a simple card to be scrolled sideways. So Listview seemed to be good choise but.... This is working but scrolldirection is vertical since this is the default Padding( padding:
June 20, 2019 at 02:28PM by Peter Kretschmer
http://bit.ly/2Y0sTit
Sidescrolling Widgets
Hi Community I havea problem that is driving me nuts in Flutter. I have a layout that requires some widget like a simple card to be scrolled sideways. So Listview seemed to be good choise but.... This is working but scrolldirection is vertical since this is the default Padding( padding:
June 20, 2019 at 02:28PM by Peter Kretschmer
http://bit.ly/2Y0sTit
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:
Is there any way to open link that comes from onesignal on webview? Ask Question
I'm using webview widget in my flutter app I want to open a link when user tap on notification, the link comes from additional data on one signal I tried to make this but it doesn't work my code : import 'package:flutter/material.dart';import 'dart:async';import 'package:flutter_webview_plugin/f
June 20, 2019 at 04:34PM by DoN Smash
http://bit.ly/2XmMufD
Is there any way to open link that comes from onesignal on webview? Ask Question
I'm using webview widget in my flutter app I want to open a link when user tap on notification, the link comes from additional data on one signal I tried to make this but it doesn't work my code : import 'package:flutter/material.dart';import 'dart:async';import 'package:flutter_webview_plugin/f
June 20, 2019 at 04:34PM by DoN Smash
http://bit.ly/2XmMufD
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:
Record video or media streaming in flutter web
I newbie in FLutter Web. I want to record video from the webcam and store in Database by the flutter web. is it possible to record video from the flutter web? I have been searching for days but found nothing.
June 20, 2019 at 04:17PM by farhana_sys
http://bit.ly/2x7ctZM
Record video or media streaming in flutter web
I newbie in FLutter Web. I want to record video from the webcam and store in Database by the flutter web. is it possible to record video from the flutter web? I have been searching for days but found nothing.
June 20, 2019 at 04:17PM by farhana_sys
http://bit.ly/2x7ctZM
reddit
r/FlutterDev - Record video or media streaming in flutter web
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
First face tracking experiments in ARKit for Flutter. Really basic, but you may go bananas already.
http://bit.ly/2Rs2rvv
June 20, 2019 at 06:04PM by EngineerScientist
http://bit.ly/31MraiU
First face tracking experiments in ARKit for Flutter. Really basic, but you may go bananas already.
http://bit.ly/2Rs2rvv
June 20, 2019 at 06:04PM by EngineerScientist
http://bit.ly/31MraiU
GitHub
olexale/arkit_flutter_plugin
ARKit Flutter Plugin. Contribute to olexale/arkit_flutter_plugin development by creating an account on GitHub.
New tweet from FlutterDev:
Keep your aspect ratio in check! ✅
The AspectRatio widget can be used to give a child widget a specific aspect ratio. Use it to keep the ratio of your widget’s width and height consistent when dimensions change.
Watch more #WidgetoftheWeek here → https://t.co/gevEOytniu pic.twitter.com/EdVez92p6c— Flutter (@FlutterDev) June 20, 2019
June 20, 2019 at 06:40PM
http://twitter.com/FlutterDev/status/1141747629862182912
Keep your aspect ratio in check! ✅
The AspectRatio widget can be used to give a child widget a specific aspect ratio. Use it to keep the ratio of your widget’s width and height consistent when dimensions change.
Watch more #WidgetoftheWeek here → https://t.co/gevEOytniu pic.twitter.com/EdVez92p6c— Flutter (@FlutterDev) June 20, 2019
June 20, 2019 at 06:40PM
http://twitter.com/FlutterDev/status/1141747629862182912
Twitter
#widgetoftheweek hashtag on Twitter
15h ago @FlutterDev tweeted: "✏️ Writing your own button controls from.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
const CustomPainter and CustomClipper
In this stack overflow question asked and answered by Remi Rousselet(author of Provider package), it says using const in front of the class constructor helps avoid unwanted widget builds.I am having performance issues with my 'CustomPainter' and 'CustomClipper' and want to apply this tactic. My customclipper clips a child widget with a certain custom shape and my custompainter paints a shadow according to the clipped shapes boundaries. These two shapes don't change at all. Only inside of the child widget changes(text).Question is how can i make these two classes const or static so that they don't get rebuild with every build by their parent widgets?
June 20, 2019 at 06:35PM by aytunch
http://bit.ly/2x7kvlg
const CustomPainter and CustomClipper
In this stack overflow question asked and answered by Remi Rousselet(author of Provider package), it says using const in front of the class constructor helps avoid unwanted widget builds.I am having performance issues with my 'CustomPainter' and 'CustomClipper' and want to apply this tactic. My customclipper clips a child widget with a certain custom shape and my custompainter paints a shadow according to the clipped shapes boundaries. These two shapes don't change at all. Only inside of the child widget changes(text).Question is how can i make these two classes const or static so that they don't get rebuild with every build by their parent widgets?
June 20, 2019 at 06:35PM by aytunch
http://bit.ly/2x7kvlg
Stack Overflow
How to deal with unwanted widget build?
For various reasons, sometimes the build method of my widgets is called again.
I know that it happens because a parent updated. But this causes undesired effects.
A typical situation where it causes
I know that it happens because a parent updated. But this causes undesired effects.
A typical situation where it causes
New post on /r/flutterdev subreddit:
ReactiveHacks AMA
http://bit.ly/2ZyBdWX
June 20, 2019 at 06:26PM by vorcigernix
http://bit.ly/2WWeQsI
ReactiveHacks AMA
http://bit.ly/2ZyBdWX
June 20, 2019 at 06:26PM by vorcigernix
http://bit.ly/2WWeQsI
reddit
r/reactjs - ReactiveHacks AMA
2 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Season veggies app lags on main screen
Hi, I downloaded this app for just checking out the framework, but it seems there are some issues, something feels off when scrolling and there are also lags. Hope this help you guys, it creates bad impression for new developers. ------------------------------ [image: RPReplay-Final1561050520.
June 20, 2019 at 07:14PM by Arkesh Kalathiya
http://bit.ly/2XsOhQh
Season veggies app lags on main screen
Hi, I downloaded this app for just checking out the framework, but it seems there are some issues, something feels off when scrolling and there are also lags. Hope this help you guys, it creates bad impression for new developers. ------------------------------ [image: RPReplay-Final1561050520.
June 20, 2019 at 07:14PM by Arkesh Kalathiya
http://bit.ly/2XsOhQh
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:
Learn Flutter from some great courses, tutorials & books
http://bit.ly/2IhfM75
June 20, 2019 at 07:09PM by ReactDOM
http://bit.ly/2IryGbk
Learn Flutter from some great courses, tutorials & books
http://bit.ly/2IhfM75
June 20, 2019 at 07:09PM by ReactDOM
http://bit.ly/2IryGbk
ReactDOM
Best Flutter books & Best Flutter courses in 2022
Learn Flutter in 2019, best Flutter courses, best Flutter tutorials & best Flutter books, resources, step by step guide, crash course
New post on /r/flutterdev subreddit:
Presenting Flutter Forum for flutter community
http://bit.ly/2RoKgHb
June 20, 2019 at 07:06PM by ashish173
http://bit.ly/2RqSONM
Presenting Flutter Forum for flutter community
http://bit.ly/2RoKgHb
June 20, 2019 at 07:06PM by ashish173
http://bit.ly/2RqSONM
Medium
Announcing Flutter Forum
A dedicated platform for Flutter community collaborate on news, questions, trivia and everything flutter
New post on /r/flutterdev subreddit:
Switching themes in flutter with inherited widgets is soo smooth
http://bit.ly/31JLDVF
June 20, 2019 at 06:50PM by awesomeness-yeah
http://bit.ly/2RsxKqb
Switching themes in flutter with inherited widgets is soo smooth
http://bit.ly/31JLDVF
June 20, 2019 at 06:50PM by awesomeness-yeah
http://bit.ly/2RsxKqb
New post on /r/flutterdev subreddit:
SetState for another class
Let's suppose we have two classes MyApp1 and MyApp2 and MyApp1 has something like title how can I change the title of it when something in MyApp2 happens? For example when I click the button which exists in MyApp2 to change the title in MyApp1.
June 20, 2019 at 07:39PM by saleem1333
http://bit.ly/2WWjlbT
SetState for another class
Let's suppose we have two classes MyApp1 and MyApp2 and MyApp1 has something like title how can I change the title of it when something in MyApp2 happens? For example when I click the button which exists in MyApp2 to change the title in MyApp1.
June 20, 2019 at 07:39PM by saleem1333
http://bit.ly/2WWjlbT
reddit
r/FlutterDev - SetState for another class
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Best Way to Detect Tablets?
Does anyone know if there's an "official" way to detect tablets with flutter? I'm familiar with: double _screenWidth = MediaQuery.of(context).size.width; I just wanted to know if there's a better option. Thanks!
June 20, 2019 at 08:02PM by Matthew Jones
http://bit.ly/2WX2Vjc
Best Way to Detect Tablets?
Does anyone know if there's an "official" way to detect tablets with flutter? I'm familiar with: double _screenWidth = MediaQuery.of(context).size.width; I just wanted to know if there's a better option. Thanks!
June 20, 2019 at 08:02PM by Matthew Jones
http://bit.ly/2WX2Vjc
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:
Road to Flutter City - Rody Davis
https://www.youtube.com/watch?v=N1PKhvyDYyg
June 20, 2019 at 08:12PM by Purple_Pizzazz
http://bit.ly/2MZS1Vk
Road to Flutter City - Rody Davis
https://www.youtube.com/watch?v=N1PKhvyDYyg
June 20, 2019 at 08:12PM by Purple_Pizzazz
http://bit.ly/2MZS1Vk
YouTube
Road to Flutter City - Rody Davis
Source: https://github.com/rodydavis/flutter_piano
Slides: https://docs.google.com/presentation/d/18FuD56CHamy9jIi66xjvzb-68QA4e3Kr0xIjHRvLKMs/edit?usp=sharing
Slides: https://docs.google.com/presentation/d/18FuD56CHamy9jIi66xjvzb-68QA4e3Kr0xIjHRvLKMs/edit?usp=sharing
New post on /r/flutterdev subreddit:
Automatically build your Flutter apps with Travis-CI
http://bit.ly/2MUXwVd
June 20, 2019 at 09:29PM by SamJakob
http://bit.ly/2FjyWHu
Automatically build your Flutter apps with Travis-CI
http://bit.ly/2MUXwVd
June 20, 2019 at 09:29PM by SamJakob
http://bit.ly/2FjyWHu
Medium
Automatically build your Flutter apps with Travis-CI
…and some other cool tips and tricks!
New post on /r/flutterdev subreddit:
A year of Flutter Community
http://bit.ly/2WSNn02
June 20, 2019 at 09:34PM by EngineerScientist
http://bit.ly/2N21agl
A year of Flutter Community
http://bit.ly/2WSNn02
June 20, 2019 at 09:34PM by EngineerScientist
http://bit.ly/2N21agl
Medium
A year of Flutter Community
A look back at the first year of Flutter Community by Nash Ramdial and Jay (Jeroen) Meijer
New post on /r/flutterdev subreddit:
Tap Hero : Multiplatform to the max, casual tapping arcade game, developed in Flutter is now open source.
http://bit.ly/2WWjVBo
June 20, 2019 at 10:07PM by EngineerScientist
http://bit.ly/2KvKOu3
Tap Hero : Multiplatform to the max, casual tapping arcade game, developed in Flutter is now open source.
http://bit.ly/2WWjVBo
June 20, 2019 at 10:07PM by EngineerScientist
http://bit.ly/2KvKOu3
GitHub
mkiisoft/taphero
Tap Hero Game - An Open Source Flutter Game. Contribute to mkiisoft/taphero development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
new novice to learn flutter. One question as to how to use the database ?
I have never done Flutter in my school life and I am now doing that. We have made a website and published using hosting service company 'go daddy'. I just wonder how to synchronize the database with flutter?This might be the general question as to how to use the database using hosting service?
June 21, 2019 at 01:32AM by HeyJOe2
http://bit.ly/2Y5qNOq
new novice to learn flutter. One question as to how to use the database ?
I have never done Flutter in my school life and I am now doing that. We have made a website and published using hosting service company 'go daddy'. I just wonder how to synchronize the database with flutter?This might be the general question as to how to use the database using hosting service?
June 21, 2019 at 01:32AM by HeyJOe2
http://bit.ly/2Y5qNOq
reddit
r/FlutterDev - new novice to learn flutter. One question as to how to use the database ?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Tutorial - Flutter web
https://www.youtube.com/watch?v=YelioRdQI4k
June 21, 2019 at 05:09AM by whatsupcoders
http://bit.ly/2XZXgpj
Flutter Tutorial - Flutter web
https://www.youtube.com/watch?v=YelioRdQI4k
June 21, 2019 at 05:09AM by whatsupcoders
http://bit.ly/2XZXgpj
YouTube
Flutter Tutorial - Flutter web
Flutter Tutorial - Flutter web
In this video, you will see how to bring flutter to the web and create this simple page "Euro Rail" Page which is responsive.
Clone this repo to start working on Flutter_Web - https://github.com/flutter/flutter_web#
For…
In this video, you will see how to bring flutter to the web and create this simple page "Euro Rail" Page which is responsive.
Clone this repo to start working on Flutter_Web - https://github.com/flutter/flutter_web#
For…