New post on /r/flutterdev subreddit:
Flutter Custom Icons – Automatic & Manual Way (Icon Font or SVG)
https://youtu.be/qZYqmM3daO0
August 15, 2019 at 07:53PM by EngineerScientist
https://ift.tt/33DIsQo
Flutter Custom Icons – Automatic & Manual Way (Icon Font or SVG)
https://youtu.be/qZYqmM3daO0
August 15, 2019 at 07:53PM by EngineerScientist
https://ift.tt/33DIsQo
YouTube
Flutter Custom Icons – Automatic & Manual Way (Icon Font or SVG)
📗 Learn from the written tutorial & get all links 👇👇
https://resocoder.com/flutter-custom-icons
👨💻 Do you write good code? Find out now 👇
https://resocoder.com/good-code-quiz
Icons are Flutter's first class citizen. Even right out of the box, you get access…
https://resocoder.com/flutter-custom-icons
👨💻 Do you write good code? Find out now 👇
https://resocoder.com/good-code-quiz
Icons are Flutter's first class citizen. Even right out of the box, you get access…
New post on /r/flutterdev subreddit:
Flutter App connecting to Hardware(ESP32) through BLE
https://youtu.be/13voX5Y9fTc
August 15, 2019 at 09:19PM by XBriefer
https://ift.tt/2TxW2jH
Flutter App connecting to Hardware(ESP32) through BLE
https://youtu.be/13voX5Y9fTc
August 15, 2019 at 09:19PM by XBriefer
https://ift.tt/2TxW2jH
YouTube
ESP32 | FLUTTER | BLE - Temperature & Humidity Check App (Deprecated)
**Note**
This Flutter app was created in version 1.x. It no longer works in the latest Flutter environment. Please check out other flutter apps for BLE connection on my channel.
Flutter is Google's mobile app SDK for crafting high-quality native interfaces…
This Flutter app was created in version 1.x. It no longer works in the latest Flutter environment. Please check out other flutter apps for BLE connection on my channel.
Flutter is Google's mobile app SDK for crafting high-quality native interfaces…
New post on /r/flutterdev subreddit:
'60 Days of Flutter: Building a Messenger from Scratch' : Day 3–4 : Building a Chat Screen in Flutter
https://ift.tt/2TBc9wX
August 15, 2019 at 10:48PM by aditya_gurjar
https://ift.tt/2Hb5UL7
'60 Days of Flutter: Building a Messenger from Scratch' : Day 3–4 : Building a Chat Screen in Flutter
https://ift.tt/2TBc9wX
August 15, 2019 at 10:48PM by aditya_gurjar
https://ift.tt/2Hb5UL7
Medium
60 Days of Flutter : Day 3–4 : Building a Chat Screen in Flutter
And Custom Widgets
New post on /r/flutterdev subreddit:
🔥 Package that proposes a new way for create forms with bloc 🔥
https://ift.tt/2KlINzE
August 15, 2019 at 10:40PM by GiancarloCode
https://ift.tt/2ZatttT
🔥 Package that proposes a new way for create forms with bloc 🔥
https://ift.tt/2KlINzE
August 15, 2019 at 10:40PM by GiancarloCode
https://ift.tt/2ZatttT
Dart packages
flutter_form_bloc | Flutter Package
Flutter widgets that make it easy to create forms with form_bloc.
New post on /r/flutterdev subreddit:
Is it possible to start an action in the app even before opening it, with a gesture?
I want to record sound on the smartwatch for next 10 seconds when I detect the sudden hand movement to his mouth. Thank y'all!
August 16, 2019 at 12:33AM by charlesjcn
https://ift.tt/305iJxT
Is it possible to start an action in the app even before opening it, with a gesture?
I want to record sound on the smartwatch for next 10 seconds when I detect the sudden hand movement to his mouth. Thank y'all!
August 16, 2019 at 12:33AM by charlesjcn
https://ift.tt/305iJxT
reddit
r/FlutterDev - Is it possible to start an action in the app even before opening it, with a gesture?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Bloc or Provider or any other architecure?
I have been learning for Flutter for a few months, developed a few demo app for learning purposes, I learned Bloc, Provider, but still confused which architecture to choose for my production project.
August 16, 2019 at 10:02AM by sadmansamee
https://ift.tt/2YSO8XV
Bloc or Provider or any other architecure?
I have been learning for Flutter for a few months, developed a few demo app for learning purposes, I learned Bloc, Provider, but still confused which architecture to choose for my production project.
August 16, 2019 at 10:02AM by sadmansamee
https://ift.tt/2YSO8XV
reddit
r/FlutterDev - Bloc or Provider or any other architecure?
0 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
flash | ⚡️A highly customizable, powerful and easy-to-use alerting library for Flutter.
https://ift.tt/302Kjfa
August 16, 2019 at 08:53AM by Purple_Pizzazz
https://ift.tt/2KQrTrI
flash | ⚡️A highly customizable, powerful and easy-to-use alerting library for Flutter.
https://ift.tt/302Kjfa
August 16, 2019 at 08:53AM by Purple_Pizzazz
https://ift.tt/2KQrTrI
Dart packages
flash | Flutter Package
⚡️A highly customizable, powerful and easy-to-use alerting library for Flutter.
New post on /r/flutterdev subreddit:
The difficulty and lack of resources on testing is making me consider skipping tests altogether
I've been giving Flutter a serious try at my job and my experience has not been pleasant over the past few weeks just because of how hard it is to write tests.I hit a wall recently when I tried writing tests for a widget that does 2 API calls upon mount (
August 16, 2019 at 10:31AM by outtascope
https://ift.tt/2Zg1Zak
The difficulty and lack of resources on testing is making me consider skipping tests altogether
I've been giving Flutter a serious try at my job and my experience has not been pleasant over the past few weeks just because of how hard it is to write tests.I hit a wall recently when I tried writing tests for a widget that does 2 API calls upon mount (
initState()
). Making HTTP requests means that I would have to use futures and let me tell you that testing becomes really hard when futures are involved. Despite that, the tests were actually fine when it was only doing 1 API call. It was just after adding the second API call that a lot of them broke. I spent a lot of time finding ways on how to fix them.Eventually, I thought that maybe it was my architecture or the way I was writing the app that was making it hard to write tests, so I opted to switch to using MobX along with Provider (previous one was just using ChangeNotifier along with Provider). I actually ended up worse than where I was before because I had to rewrite a large part of the app to make it compliant with how MobX does stuff which broke more tests. I tried so hard to find answers online, but I couldn't really find anything that's beyond testing the counter app that flutter create
gives you. The best I could find was the tests inside Iiro Krankka's inKino project which helped a little, but it wasn't what I was looking for. Aside from the advice about using tester.runAsync()
, tester.pump()
or tester.pumpAndSettle()
, there isn't a lot of information about how to do these kinds of tests.I'm thinking of just skipping the tests because the code works in reality (on an emulator/simulator or an actual device), but I want to write tests as much as possible. Does anyone have any good resources on testing code that you will actually use in the real world? This is frustrating for me because the good experience that I had from testing convinced me to switch to Flutter from React Native only to find out that it becomes really hard as soon as I get serious with it.August 16, 2019 at 10:31AM by outtascope
https://ift.tt/2Zg1Zak
GitHub
GitHub - roughike/inKino: A multiplatform Dart movie app with 40% of code sharing between Flutter and the Web.
A multiplatform Dart movie app with 40% of code sharing between Flutter and the Web. - roughike/inKino
New post on Flutter Dev Google group:
Fetch Array from firebase to mobile screen
https://ift.tt/31Cvbpg Anyone please solve this for me !! Thanks in advance
August 16, 2019 at 04:06PM by aakash dabas
https://ift.tt/2KDwQFi
Fetch Array from firebase to mobile screen
https://ift.tt/31Cvbpg Anyone please solve this for me !! Thanks in advance
August 16, 2019 at 04:06PM by aakash dabas
https://ift.tt/2KDwQFi
Stack Overflow
How to get array data back to mobile screen from firebase (Flutter)
How to get back array data to the mobile screen.
The String in the firebase is retrieved easily but I have problem with array data.
1) main.dart :
import 'dart:async';
import 'package:flutter/ma...
The String in the firebase is retrieved easily but I have problem with array data.
1) main.dart :
import 'dart:async';
import 'package:flutter/ma...
New post on /r/flutterdev subreddit:
TweenAnimationBuilder to animate without manager controllers
https://twitter.com/BlueAquilae/status/1162358894385123328
August 16, 2019 at 03:43PM by Sol_Ido
https://ift.tt/2N7iUoR
TweenAnimationBuilder to animate without manager controllers
https://twitter.com/BlueAquilae/status/1162358894385123328
August 16, 2019 at 03:43PM by Sol_Ido
https://ift.tt/2N7iUoR
Twitter
Robert Felker
#flutter TweenAnimationBuilder rely on ImplicitlyAnimatedWidget so you don't have to manager AnimationController anymore in your code ! Here's a preview of the coming syntax with colors to help you follow the animated var
New post on Flutter Dev Google group:
Is there any library for Sinhala language in flutter localization?
I’m developing a mobile application using flutter to be used in my country, Sri Lanka. I have to use* Sinhala language* as the font in the mobile UIs. I searched it on many websites, went through documentations but unable to find a proper solution. I want to know whether there is a flutter_loca
August 16, 2019 at 04:14PM by Yasas Sandeepa
https://ift.tt/307NQZZ
Is there any library for Sinhala language in flutter localization?
I’m developing a mobile application using flutter to be used in my country, Sri Lanka. I have to use* Sinhala language* as the font in the mobile UIs. I searched it on many websites, went through documentations but unable to find a proper solution. I want to know whether there is a flutter_loca
August 16, 2019 at 04:14PM by Yasas Sandeepa
https://ift.tt/307NQZZ
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:
How to fetch array from firebase to mobile screen (Flutter)
Anyone please help me to solve this!! Thanks in advance.https://stackoverflow.com/questions/57494244/how-can-i-get-array-data-back-to-mobile-screen-from-firebase-flutter?noredirect=1#comment101459692_57494244
August 16, 2019 at 04:14PM by lolhsab
https://ift.tt/2PfoyIr
How to fetch array from firebase to mobile screen (Flutter)
Anyone please help me to solve this!! Thanks in advance.https://stackoverflow.com/questions/57494244/how-can-i-get-array-data-back-to-mobile-screen-from-firebase-flutter?noredirect=1#comment101459692_57494244
August 16, 2019 at 04:14PM by lolhsab
https://ift.tt/2PfoyIr
Stack Overflow
How to get array data back to mobile screen from firebase (Flutter)
How to get back array data to the mobile screen.
The String in the firebase is retrieved easily but I have problem with array data.
1) main.dart :
import 'dart:async';
import 'package:flutter/ma...
The String in the firebase is retrieved easily but I have problem with array data.
1) main.dart :
import 'dart:async';
import 'package:flutter/ma...
New tweet from FlutterDev:
You can now record and profile CPU performance! 📹
Use DevTool’s new Performance view to profile a session from your @dart_lang application. #FlutterFriday
Learn how here → https://t.co/gBljOIavje pic.twitter.com/YzBFwFWldx— Flutter (@FlutterDev) August 16, 2019
August 16, 2019 at 06:00PM
http://twitter.com/FlutterDev/status/1162393586115252225
You can now record and profile CPU performance! 📹
Use DevTool’s new Performance view to profile a session from your @dart_lang application. #FlutterFriday
Learn how here → https://t.co/gBljOIavje pic.twitter.com/YzBFwFWldx— Flutter (@FlutterDev) August 16, 2019
August 16, 2019 at 06:00PM
http://twitter.com/FlutterDev/status/1162393586115252225
Twitter
Dart Language (@dart_lang) | Twitter
The latest Tweets from Dart Language (@dart_lang). A client-optimized language for fast apps on any platform
New post on /r/flutterdev subreddit:
IAP subscriptions with Firestore?
Hi Everyone!I want implement subscriptions in my app with Flutter IAP but documentation is not good.Anyone know tutorial on how to implement subscriptions with Firestore backend?Thanks everyone!
August 16, 2019 at 06:08PM by Flutter_Dev
https://ift.tt/2P2eq5w
IAP subscriptions with Firestore?
Hi Everyone!I want implement subscriptions in my app with Flutter IAP but documentation is not good.Anyone know tutorial on how to implement subscriptions with Firestore backend?Thanks everyone!
August 16, 2019 at 06:08PM by Flutter_Dev
https://ift.tt/2P2eq5w
Dart packages
in_app_purchase | Flutter package
A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
New post on Flutter Dev Google group:
Checking video for adult content
I'm doing a video upload portion of my app and I want to check the video for porn/sentitive content before it is allowed to be posted to the DB and other users can see it. Does anyone know how I can check the video as it is being upload and reject it if necessary. I found this cloud function
August 16, 2019 at 06:09PM by Brennan Altringer
https://ift.tt/2HbiDgM
Checking video for adult content
I'm doing a video upload portion of my app and I want to check the video for porn/sentitive content before it is allowed to be posted to the DB and other users can see it. Does anyone know how I can check the video as it is being upload and reject it if necessary. I found this cloud function
August 16, 2019 at 06:09PM by Brennan Altringer
https://ift.tt/2HbiDgM
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:
What are the best ways of storing and accessing long texts?
Let’s assume that you would have multiple articles that you want to display in your app. These consist of formatted text, like headings and body text. Also they should be accessible offline.Would you store each article as a separate .txt file in the assets or write them to SharedPreferences? Or do you have another solution?Let me know!Cheers!
August 16, 2019 at 07:39PM by iamarr0gant
https://ift.tt/30amC4D
What are the best ways of storing and accessing long texts?
Let’s assume that you would have multiple articles that you want to display in your app. These consist of formatted text, like headings and body text. Also they should be accessible offline.Would you store each article as a separate .txt file in the assets or write them to SharedPreferences? Or do you have another solution?Let me know!Cheers!
August 16, 2019 at 07:39PM by iamarr0gant
https://ift.tt/30amC4D
reddit
r/FlutterDev - What are the best ways of storing and accessing long texts?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter IDE builder !
https://twitter.com/norbertkozsir/status/1162413062630121472
August 16, 2019 at 07:18PM by Sol_Ido
https://ift.tt/2Z7owWC
Flutter IDE builder !
https://twitter.com/norbertkozsir/status/1162413062630121472
August 16, 2019 at 07:18PM by Sol_Ido
https://ift.tt/2Z7owWC
Twitter
Norbert Kozsir 💙
Fixin' bugs & finishing up some refactorings. Here's a little preview of the text style changer. https://t.co/Y4LqpM5cfQ
New post on /r/flutterdev subreddit:
You can now record and profile CPU performance! Use DevTool’s new Performance view to profile a session from your dart application.
https://ift.tt/2KLm132
August 16, 2019 at 06:55PM by EngineerScientist
https://ift.tt/2MlmX1o
You can now record and profile CPU performance! Use DevTool’s new Performance view to profile a session from your dart application.
https://ift.tt/2KLm132
August 16, 2019 at 06:55PM by EngineerScientist
https://ift.tt/2MlmX1o
flutter.dev
Using the Performance view
Learn how to use the DevTools performance view.
New post on Flutter Dev Google group:
Ordering
Hi, I've been asked to create an app to have a product and a short description below it and when the user clicks on the product it should open a form so the user write it's phone number and order it, it's easy but i just don't know how the ordering works? If you can please send me some videos or
August 16, 2019 at 09:23PM by Yasin Yeganeh
https://ift.tt/2TIzP2j
Ordering
Hi, I've been asked to create an app to have a product and a short description below it and when the user clicks on the product it should open a form so the user write it's phone number and order it, it's easy but i just don't know how the ordering works? If you can please send me some videos or
August 16, 2019 at 09:23PM by Yasin Yeganeh
https://ift.tt/2TIzP2j
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:
Page with column that contains a ListView and a Row at the bottom
Hi, I want to create a screen which has: - A Text for title on the top - A ListView that takes up the majority of the vertical space - A Row at the bottom which contains: - An Icon - A TextField - A Button [image: Anmerkung 2019-08-16 214433.png] So what I tried is
August 16, 2019 at 09:46PM by D B
https://ift.tt/2YWEHH1
Page with column that contains a ListView and a Row at the bottom
Hi, I want to create a screen which has: - A Text for title on the top - A ListView that takes up the majority of the vertical space - A Row at the bottom which contains: - An Icon - A TextField - A Button [image: Anmerkung 2019-08-16 214433.png] So what I tried is
August 16, 2019 at 09:46PM by D B
https://ift.tt/2YWEHH1
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.