New post on /r/flutterdev subreddit:
Anyone else getting extreme slider lag?
http://bit.ly/2AYiQ3P
January 23, 2019 at 06:14AM by superl2
http://bit.ly/2TcXiYA
Anyone else getting extreme slider lag?
http://bit.ly/2AYiQ3P
January 23, 2019 at 06:14AM by superl2
http://bit.ly/2TcXiYA
reddit
r/FlutterDev - Anyone else getting extreme slider lag?
1 vote and 2 comments so far on Reddit
New post on Flutter Dev Google group:
Flutter Android SDK Requirements
Flutter Master (and soon Dev) now requires Android SDK 28 and BuildTools version 28.0.3 This is a result of updating some functionality in the Engine and pushing up our target/compile SDK constraints to match. This came as a surprise to some users, and Gradle's error messages can be a bit
January 23, 2019 at 08:04AM by Dan Field
http://bit.ly/2sEppEd
Flutter Android SDK Requirements
Flutter Master (and soon Dev) now requires Android SDK 28 and BuildTools version 28.0.3 This is a result of updating some functionality in the Engine and pushing up our target/compile SDK constraints to match. This came as a surprise to some users, and Gradle's error messages can be a bit
January 23, 2019 at 08:04AM by Dan Field
http://bit.ly/2sEppEd
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:
Get color name from hex code
how can i get the color name from this method , class link via : http://bit.ly/2Mr39Xn // this is class file got from flutter
January 23, 2019 at 08:07AM by Mohanraj Archunan
http://bit.ly/2sEprMl
Get color name from hex code
how can i get the color name from this method , class link via : http://bit.ly/2Mr39Xn // this is class file got from flutter
January 23, 2019 at 08:07AM by Mohanraj Archunan
http://bit.ly/2sEprMl
GitHub
flutter/flutter
Flutter makes it easy and fast to build beautiful mobile apps. - flutter/flutter
New post on Flutter Dev Google group:
Flutter with image processing
Hi I want to know can I create image processing app with flutter like identity any image using flutter
January 23, 2019 at 09:43AM by Bawantha Rajapaksha
http://bit.ly/2CIMzOe
Flutter with image processing
Hi I want to know can I create image processing app with flutter like identity any image using flutter
January 23, 2019 at 09:43AM by Bawantha Rajapaksha
http://bit.ly/2CIMzOe
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:
Implementing Bluetooth LE and foreground services in Fluter
I wanted to know if it is possible to have a bluetooth LE connection in flutter through a foreground service displaying a notification of connection status and the device name/details.
January 23, 2019 at 10:14AM by fardeen9983
http://bit.ly/2R6Z2Rc
Implementing Bluetooth LE and foreground services in Fluter
I wanted to know if it is possible to have a bluetooth LE connection in flutter through a foreground service displaying a notification of connection status and the device name/details.
January 23, 2019 at 10:14AM by fardeen9983
http://bit.ly/2R6Z2Rc
reddit
r/FlutterDev - Implementing Bluetooth LE and foreground services in Fluter
1 vote and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Is Flutter right for realtime multimedia chat feature?
Hello good people,I need to start learning Flutter for a possible project and would like to know: Can a real-time chat feature with multimedia sending/receiving similar to whatsapp be created using Flutter?If yes, what would be needed to create such a feature?Any thoughts or guidance or articles much appreciated!
January 23, 2019 at 10:07AM by openmindpower
http://bit.ly/2W50WFw
Is Flutter right for realtime multimedia chat feature?
Hello good people,I need to start learning Flutter for a possible project and would like to know: Can a real-time chat feature with multimedia sending/receiving similar to whatsapp be created using Flutter?If yes, what would be needed to create such a feature?Any thoughts or guidance or articles much appreciated!
January 23, 2019 at 10:07AM by openmindpower
http://bit.ly/2W50WFw
reddit
r/FlutterDev - Is Flutter right for realtime multimedia chat feature?
1 vote and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Problem connecting to BLE devices using Flutter Blue
Hi!I'm new to Flutter and and wanted to test out some of the BLE functionality that Flutter Blue offers. I've got the example application up and running and it finds plenty of devices around me. The problem is that I'm not able to connect to any of them. I'm currently using a second phone to emulate a BLE Peripheral, all other software such as nRF Connect for Mobile is able to connect to the peripheral and read the data it provides. The Flutter Blue example application is just stuck on disconnected when attempting to connect to the device.Here is a typical console output when attempting to connect:D/BluetoothGatt( 6359): connect() - device: 73:B9:9F:25:67:DC, auto: true
D/BluetoothGatt( 6359): registerApp()
D/BluetoothGatt( 6359): registerApp() - UUID=44fdc1ff-3804-4ae2-ab52-3f3b6eb31e17
D/BluetoothGatt( 6359): onClientRegistered() - status=0 clientIf=7
D/BluetoothGatt( 6359): onAutoConnectionStatusCb()status =10
D/BluetoothGatt( 6359): close()I have managed to connect to the emulated peripheral a few times by first connecting via a different application and then "connecting" with the Flutter application. This is the output:D/BluetoothGatt( 6359): connect() - device: 73:B9:9F:25:67:DC, auto: true
D/BluetoothGatt( 6359): registerApp()
D/BluetoothGatt( 6359): registerApp() - UUID=201eaf3d-ab8a-402e-9cbf-232527fa53a8
D/BluetoothGatt( 6359): onClientRegistered() - status=0 clientIf=8
D/BluetoothGatt( 6359): onAutoConnectionStatusCb()status =10
D/BluetoothGatt( 6359): onClientConnectionState() - status=0 clientIf=8 device=73:B9:9F:25:67:DC
D/FlutterBluePlugin( 6359): [onConnectionStateChange] status: 0 newState: 2
D/BluetoothGatt( 6359): discoverServices() - device: 73:B9:9F:25:67:DC
I/flutter ( 6359): connected!
D/BluetoothGatt( 6359): onSearchComplete() = Device=73:B9:9F:25:67:DC Status=0
D/FlutterBluePlugin( 6359): [onServicesDiscovered] count: 3 status: 0I have read about connections not closing properly after exiting other applications and I've made sure to toggle both Bluetooth and Location services on/off as well as uninstalling other applications that might interfere with the Flutter application. I've tried allowing a longer timeout duration on connecting to make sure that the application doesn't close the connection before being able to actually connect, apart from that I'm a bit lost and can't quite put my finger on what might be wrong.Any suggestions are welcome! Thanks!EDIT: Sorry if this is the wrong place to ask such a question!
January 23, 2019 at 10:06AM by kattzr
http://bit.ly/2R83cbm
Problem connecting to BLE devices using Flutter Blue
Hi!I'm new to Flutter and and wanted to test out some of the BLE functionality that Flutter Blue offers. I've got the example application up and running and it finds plenty of devices around me. The problem is that I'm not able to connect to any of them. I'm currently using a second phone to emulate a BLE Peripheral, all other software such as nRF Connect for Mobile is able to connect to the peripheral and read the data it provides. The Flutter Blue example application is just stuck on disconnected when attempting to connect to the device.Here is a typical console output when attempting to connect:D/BluetoothGatt( 6359): connect() - device: 73:B9:9F:25:67:DC, auto: true
D/BluetoothGatt( 6359): registerApp()
D/BluetoothGatt( 6359): registerApp() - UUID=44fdc1ff-3804-4ae2-ab52-3f3b6eb31e17
D/BluetoothGatt( 6359): onClientRegistered() - status=0 clientIf=7
D/BluetoothGatt( 6359): onAutoConnectionStatusCb()status =10
D/BluetoothGatt( 6359): close()I have managed to connect to the emulated peripheral a few times by first connecting via a different application and then "connecting" with the Flutter application. This is the output:D/BluetoothGatt( 6359): connect() - device: 73:B9:9F:25:67:DC, auto: true
D/BluetoothGatt( 6359): registerApp()
D/BluetoothGatt( 6359): registerApp() - UUID=201eaf3d-ab8a-402e-9cbf-232527fa53a8
D/BluetoothGatt( 6359): onClientRegistered() - status=0 clientIf=8
D/BluetoothGatt( 6359): onAutoConnectionStatusCb()status =10
D/BluetoothGatt( 6359): onClientConnectionState() - status=0 clientIf=8 device=73:B9:9F:25:67:DC
D/FlutterBluePlugin( 6359): [onConnectionStateChange] status: 0 newState: 2
D/BluetoothGatt( 6359): discoverServices() - device: 73:B9:9F:25:67:DC
I/flutter ( 6359): connected!
D/BluetoothGatt( 6359): onSearchComplete() = Device=73:B9:9F:25:67:DC Status=0
D/FlutterBluePlugin( 6359): [onServicesDiscovered] count: 3 status: 0I have read about connections not closing properly after exiting other applications and I've made sure to toggle both Bluetooth and Location services on/off as well as uninstalling other applications that might interfere with the Flutter application. I've tried allowing a longer timeout duration on connecting to make sure that the application doesn't close the connection before being able to actually connect, apart from that I'm a bit lost and can't quite put my finger on what might be wrong.Any suggestions are welcome! Thanks!EDIT: Sorry if this is the wrong place to ask such a question!
January 23, 2019 at 10:06AM by kattzr
http://bit.ly/2R83cbm
reddit
r/FlutterDev - Problem connecting to BLE devices using Flutter Blue
1 vote and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Convet hex to RGB flutter
i have an HEX code , then how can i convert hex to rgb?
January 23, 2019 at 11:22AM by Mohanraj Archunan
http://bit.ly/2CFLneq
Convet hex to RGB flutter
i have an HEX code , then how can i convert hex to rgb?
January 23, 2019 at 11:22AM by Mohanraj Archunan
http://bit.ly/2CFLneq
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:
Dart takes top spot in 2019 poll
http://bit.ly/2W6NaCk
January 23, 2019 at 01:59PM by UnqleSquid
http://bit.ly/2ASKoYv
Dart takes top spot in 2019 poll
http://bit.ly/2W6NaCk
January 23, 2019 at 01:59PM by UnqleSquid
http://bit.ly/2ASKoYv
JAXenter
Results are in: Fully fledged Dart takes first in 2019 poll - JAXenter
Last week, we invited you to participate in our poll letting us know which programming languages are on your list for 2019 and the results are in!
New post on /r/flutterdev subreddit:
Flutter tutorial layout builder
Flutter tutorialhttps://youtu.be/cDxSMJBzRVIhttps://i.redd.it/nr62iv5xh6c21.png
January 23, 2019 at 02:58PM by ishanfx
http://bit.ly/2RNs0KX
Flutter tutorial layout builder
Flutter tutorialhttps://youtu.be/cDxSMJBzRVIhttps://i.redd.it/nr62iv5xh6c21.png
January 23, 2019 at 02:58PM by ishanfx
http://bit.ly/2RNs0KX
YouTube
Flutter - How to create responsive layout for mobile and tablet using Layout builder
This tutorial show you how to make responsive layout using Layout Builder widget in Flutter. In here I create separate layout for mobile and tablet based on the device screen width.
Flutter Bootcamp - http://bit.ly/2JU25w7
Support by Patreon - https://ww…
Flutter Bootcamp - http://bit.ly/2JU25w7
Support by Patreon - https://ww…
New post on /r/flutterdev subreddit:
Can I run my Flutter app on a physical Android device without Android Studio?
The emulators keep failing, and apps are not building because of some gradle errors. So Is it possible to connect my phone using a USB and testing directly on the physical device? I'm using a mac
January 23, 2019 at 02:38PM by themindstorm
http://bit.ly/2sKzwXW
Can I run my Flutter app on a physical Android device without Android Studio?
The emulators keep failing, and apps are not building because of some gradle errors. So Is it possible to connect my phone using a USB and testing directly on the physical device? I'm using a mac
January 23, 2019 at 02:38PM by themindstorm
http://bit.ly/2sKzwXW
reddit
r/FlutterDev - Can I run my Flutter app on a physical Android device without Android Studio?
1 vote and 2 comments so far on Reddit
New post on Flutter Dev Google group:
Quiz App
how to implement such testing on flutter?
January 23, 2019 at 03:46PM by Almaz Amangaliev
http://bit.ly/2FKPTfE
Quiz App
how to implement such testing on flutter?
January 23, 2019 at 03:46PM by Almaz Amangaliev
http://bit.ly/2FKPTfE
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:
[NEED HELP] Flutter camera plugin record quality is very poor
I'm using flutter camera plugin and the recording is working fine. But after that when I play the recording the video quality is very poor.
January 23, 2019 at 03:44PM by divyanshub024
http://bit.ly/2U8hQBm
[NEED HELP] Flutter camera plugin record quality is very poor
I'm using flutter camera plugin and the recording is working fine. But after that when I play the recording the video quality is very poor.
January 23, 2019 at 03:44PM by divyanshub024
http://bit.ly/2U8hQBm
Dart packages
camera | Flutter Package
A Flutter plugin for getting information about and controlling the camera on Android and iOS. Supports previewing the camera feed, capturing images, capturing video, and streaming image buffers to dar
New post on /r/flutterdev subreddit:
Out-of-the-box Flutter support on Bitrise!
http://bit.ly/2RJt8PY
January 23, 2019 at 06:16PM by dayanruben
http://bit.ly/2RGulau
Out-of-the-box Flutter support on Bitrise!
http://bit.ly/2RJt8PY
January 23, 2019 at 06:16PM by dayanruben
http://bit.ly/2RGulau
Bitrise Blog
Out-of-the-box Flutter support on Bitrise!
Flutter CI on Bitrise reaches 1.0, with automatic project configuration, more steps and all the bells and whistles. Enjoy!
New tweet from flutterio:
Today on the #BoringShow, @bouncingsheep and @mjohnsullivan incorporate Web Views into the Hacker News app and answer your questions on e-commerce, spacer widget, Google Maps, and much more!
Watch here 👉 https://t.co/JEO0LE0Hgx pic.twitter.com/jo19WcVEuf— Flutter (@flutterio) January 23, 2019
January 23, 2019 at 07:26PM
http://twitter.com/flutterio/status/1088141018124468224
Today on the #BoringShow, @bouncingsheep and @mjohnsullivan incorporate Web Views into the Hacker News app and answer your questions on e-commerce, spacer widget, Google Maps, and much more!
Watch here 👉 https://t.co/JEO0LE0Hgx pic.twitter.com/jo19WcVEuf— Flutter (@flutterio) January 23, 2019
January 23, 2019 at 07:26PM
http://twitter.com/flutterio/status/1088141018124468224
Twitter
#boringshow hashtag on Twitter
38m ago @FlutterDev tweeted: "📺 The #BoringShow is back! 📺
Join @f.." - read what others are saying and join the conversation.
Join @f.." - read what others are saying and join the conversation.
New post on /r/flutterdev subreddit:
Two Minutes Quick Tip: Autoformat Code The Right Way
https://youtu.be/p3Ezaf2e3l4
January 23, 2019 at 07:18PM by impatientdeveloper
http://bit.ly/2Mu7hG2
Two Minutes Quick Tip: Autoformat Code The Right Way
https://youtu.be/p3Ezaf2e3l4
January 23, 2019 at 07:18PM by impatientdeveloper
http://bit.ly/2Mu7hG2
YouTube
Flutter for the Impatient - 5 - Pro Tips - Autoformat Code The Right Way
The comma before the close parentheses plays a critical role in autoformat. Never manually format your code again with this pro tip.
New post on Flutter Dev Google group:
Problems using Firebase_admob in Flutter
Hello, My name is Felipe and i'm having problems with my Ads using Firebase and Admob. I implemented all that the parameters from documentation in my AndroidManifest.xml, App/Build.Grade and Android/Build.Grade. But when i Run my Main.dart, i have these erros: 8193): Task exception on worker
January 23, 2019 at 07:39PM by Felipe Augusto Jesus dos Santos
http://bit.ly/2Wdyn93
Problems using Firebase_admob in Flutter
Hello, My name is Felipe and i'm having problems with my Ads using Firebase and Admob. I implemented all that the parameters from documentation in my AndroidManifest.xml, App/Build.Grade and Android/Build.Grade. But when i Run my Main.dart, i have these erros: 8193): Task exception on worker
January 23, 2019 at 07:39PM by Felipe Augusto Jesus dos Santos
http://bit.ly/2Wdyn93
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:
Incorporating Web View into Your App (The Boring Flutter Development Sho...
https://www.youtube.com/attribution_link?a=zwjB5C3bz5Q&u=%2Fwatch%3Fv%3DX3Wr7pSORSc%26feature%3Dshare
January 23, 2019 at 08:11PM by Pixelreddit
http://bit.ly/2Dv2pxG
Incorporating Web View into Your App (The Boring Flutter Development Sho...
https://www.youtube.com/attribution_link?a=zwjB5C3bz5Q&u=%2Fwatch%3Fv%3DX3Wr7pSORSc%26feature%3Dshare
January 23, 2019 at 08:11PM by Pixelreddit
http://bit.ly/2Dv2pxG
YouTube
Incorporating Web View into Your App (The Boring Flutter Development Show, Ep. 14)
Matt and Emily start out this episode of the Boring Show by answering a handful of Flutter questions. They discuss e-commerce apps, applying padding and spac...
New post on /r/flutterdev subreddit:
Why to Flutter?
I wrote an article about why people should at least try to use Flutter and what you can do with it. Please share it if you like it! ;) :) Also, help to fill out the 10th reason why to Flutter! ;)https://equaleyes.com/blog/2019/01/22/why-to-flutter/
January 23, 2019 at 09:04PM by bvantur
http://bit.ly/2FMQduy
Why to Flutter?
I wrote an article about why people should at least try to use Flutter and what you can do with it. Please share it if you like it! ;) :) Also, help to fill out the 10th reason why to Flutter! ;)https://equaleyes.com/blog/2019/01/22/why-to-flutter/
January 23, 2019 at 09:04PM by bvantur
http://bit.ly/2FMQduy
Equaleyes Blog
Why To Flutter * Equaleyes Blog
FACT: Flutter is here and is providing a lot of interesting tools and has become a big player when it comes to cross-platform development. This article is not intended to introduce you to Flutter and Dart, but with this article, I will try to impress you…
New post on /r/flutterdev subreddit:
This is how you can sign Flutter apps for iOS automatically without a Mac for free
http://bit.ly/2FKxBvd
January 23, 2019 at 10:16PM by Gigatronbot
http://bit.ly/2FWGiSf
This is how you can sign Flutter apps for iOS automatically without a Mac for free
http://bit.ly/2FKxBvd
January 23, 2019 at 10:16PM by Gigatronbot
http://bit.ly/2FWGiSf
Codemagic blog
How to sign Flutter apps for iOS automatically without a Mac | Codemagic Blog
Code sign Flutter iOS apps automatically without a Mac. Codemagic generates a signing certificate and a matching provisioning profile for you to use for code signing.