New tweet from FlutterDev:
We're looking forward to @munificentbob and @kevmoo's talk at Google #io2019! Do you have any Dart questions you'd like to hear answered in their talk?
I/O attendees, submit them here → https://t.co/xo4w3K66jc
Find their talk here → https://t.co/WPEw84jHbX pic.twitter.com/AWNsCYRq0N— Flutter (@FlutterDev) April 16, 2019
April 16, 2019 at 07:32PM
http://twitter.com/FlutterDev/status/1118205423494946817
We're looking forward to @munificentbob and @kevmoo's talk at Google #io2019! Do you have any Dart questions you'd like to hear answered in their talk?
I/O attendees, submit them here → https://t.co/xo4w3K66jc
Find their talk here → https://t.co/WPEw84jHbX pic.twitter.com/AWNsCYRq0N— Flutter (@FlutterDev) April 16, 2019
April 16, 2019 at 07:32PM
http://twitter.com/FlutterDev/status/1118205423494946817
Twitter
Bob Nystrom (@munificentbob) | Twitter
The latest Tweets from Bob Nystrom (@munificentbob). Programming language developer, ex-game developer, UI nerd, author of "Game Programming Patterns" and "Crafting Interpreters". Seattle, WA
New post on Flutter Dev Google group:
how to load csv file in flutter?
*hello * i want to use *csv *file in my *flutter* app but i have an *exception *and i don'know how to solve it? help me please import 'package:flutter/material.dart'; import 'package:flutter/services.dart' ; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override
April 16, 2019 at 07:35PM by Figuir DJamila
http://bit.ly/2Ph1tkH
how to load csv file in flutter?
*hello * i want to use *csv *file in my *flutter* app but i have an *exception *and i don'know how to solve it? help me please import 'package:flutter/material.dart'; import 'package:flutter/services.dart' ; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override
April 16, 2019 at 07:35PM by Figuir DJamila
http://bit.ly/2Ph1tkH
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's best practice? Drawing custom shapes or using ClipPath?
Anyone have any thoughts on this?
April 16, 2019 at 10:40PM by NeverSpeaks
http://bit.ly/2IzMD7D
What's best practice? Drawing custom shapes or using ClipPath?
Anyone have any thoughts on this?
April 16, 2019 at 10:40PM by NeverSpeaks
http://bit.ly/2IzMD7D
reddit
r/FlutterDev - What's best practice? Drawing custom shapes or using ClipPath?
0 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
SizedBox (Flutter Widget of the Week)
https://www.youtube.com/watch?v=EHPu_DzRfqA
April 17, 2019 at 12:13AM by MugalonDotCom
http://bit.ly/2UDfwXT
SizedBox (Flutter Widget of the Week)
https://www.youtube.com/watch?v=EHPu_DzRfqA
April 17, 2019 at 12:13AM by MugalonDotCom
http://bit.ly/2UDfwXT
YouTube
SizedBox (Flutter Widget of the Week)
Set the exact size of anything with the SizedBox widget. You can provide both dimensions, or just provide one and let the Flutter layout rules fill in the other.
More info on SizedBox → https://bit.ly/2X4Qv4E
Learn everything about Flutter at → https://flutter.dev/…
More info on SizedBox → https://bit.ly/2X4Qv4E
Learn everything about Flutter at → https://flutter.dev/…
New tweet from FlutterDev:
Get a perfect fit with SizedBox!
The SizedBox widget gives you width and height control for pixel-perfect sizing every time.
Click for more #WidgetoftheWeek tips. ↓ pic.twitter.com/H8et6Qacal— Flutter (@FlutterDev) April 16, 2019
April 17, 2019 at 12:55AM
http://twitter.com/FlutterDev/status/1118286761656864770
Get a perfect fit with SizedBox!
The SizedBox widget gives you width and height control for pixel-perfect sizing every time.
Click for more #WidgetoftheWeek tips. ↓ pic.twitter.com/H8et6Qacal— Flutter (@FlutterDev) April 16, 2019
April 17, 2019 at 12:55AM
http://twitter.com/FlutterDev/status/1118286761656864770
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:
How to Add Flutter to your Production Android App
http://bit.ly/2Xm3cYV
April 17, 2019 at 04:21AM by truongsinhtn
http://bit.ly/2XoJGet
How to Add Flutter to your Production Android App
http://bit.ly/2Xm3cYV
April 17, 2019 at 04:21AM by truongsinhtn
http://bit.ly/2XoJGet
Hacker Noon
How to Add Flutter to your Production Android App
There are instructions on how to add Flutter to existing Andriod App, but none of it has been done on a Production one, which is…
New post on /r/flutterdev subreddit:
Flutter Multi select ChoiceChip
http://bit.ly/2Gr3JmB
April 17, 2019 at 06:29AM by KarthikPonnam
http://bit.ly/2UGocfT
Flutter Multi select ChoiceChip
http://bit.ly/2Gr3JmB
April 17, 2019 at 06:29AM by KarthikPonnam
http://bit.ly/2UGocfT
Medium
Flutter Multi-select ChoiceChip
Hello Everyone
New post on /r/flutterdev subreddit:
Simple stream question
I think I'm confused about how to properly clean up streams and behavior subjects. I have broken down my issue to a very simple widget test.When I run this test:```testWidgets('Test behavior subject', (WidgetTester tester) async {final subject = BehaviorSubject<int>();
final stream = subject.stream;
subject.add(4);
print("getting first item");
final item = await stream.first;
print("got first item: $item");
subject.close();});
```It prints out:```getting first itemgot first item: 4```And then the test fails because it exceeds the timeout. But the same code works fine in a regular test.What am I misunderstanding about widget tests? Are you not allowed to use streams / behavior subjects in widget tests?
April 17, 2019 at 06:16AM by korbonix
http://bit.ly/2Ggjcoo
Simple stream question
I think I'm confused about how to properly clean up streams and behavior subjects. I have broken down my issue to a very simple widget test.When I run this test:```testWidgets('Test behavior subject', (WidgetTester tester) async {final subject = BehaviorSubject<int>();
final stream = subject.stream;
subject.add(4);
print("getting first item");
final item = await stream.first;
print("got first item: $item");
subject.close();});
```It prints out:```getting first itemgot first item: 4```And then the test fails because it exceeds the timeout. But the same code works fine in a regular test.What am I misunderstanding about widget tests? Are you not allowed to use streams / behavior subjects in widget tests?
April 17, 2019 at 06:16AM by korbonix
http://bit.ly/2Ggjcoo
reddit
r/FlutterDev - Simple stream question
0 votes and 0 comments so far on Reddit
New post on Flutter Dev Google group:
Plugins Conflict with Camera Permission
As i am using plugins, 1. image_picker: 0.5.3+1 2. simple_permission: 0.1.9 in a single project ,but i am not able to build project because there is some issue with with Camera Permission which causes conflict. I also migrated project to AndroidX but problem still exist. please suggest any
April 17, 2019 at 07:51AM by I A KHAN
http://bit.ly/2V8SwPG
Plugins Conflict with Camera Permission
As i am using plugins, 1. image_picker: 0.5.3+1 2. simple_permission: 0.1.9 in a single project ,but i am not able to build project because there is some issue with with Camera Permission which causes conflict. I also migrated project to AndroidX but problem still exist. please suggest any
April 17, 2019 at 07:51AM by I A KHAN
http://bit.ly/2V8SwPG
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:
Using WebViews in Flutter
https://www.youtube.com/watch?v=qRO-Q1Bs2DU
April 17, 2019 at 10:18AM by GeraldNwakpu
http://bit.ly/2PbMAA4
Using WebViews in Flutter
https://www.youtube.com/watch?v=qRO-Q1Bs2DU
April 17, 2019 at 10:18AM by GeraldNwakpu
http://bit.ly/2PbMAA4
YouTube
Using WebViews in Flutter
Social Network for Developers ☞ https://morioh.com Developer's Store ☞ https://www.moteefe.com/store/developer?cp=WP6JDT Learn to code for free and get a dev...
New post on /r/flutterdev subreddit:
Local Push Notification II (Tutorial)
https://www.youtube.com/watch?v=lVDO58jCiCo
April 17, 2019 at 11:04AM by JohannesMilke
http://bit.ly/2ZgW0z3
Local Push Notification II (Tutorial)
https://www.youtube.com/watch?v=lVDO58jCiCo
April 17, 2019 at 11:04AM by JohannesMilke
http://bit.ly/2ZgW0z3
YouTube
Local Push Notification II - Flutter
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
► Source code: https://github.com/JohannesMilke/local_push_notification_ii
► Buy My Courses: https://johannesmilke.teachable.com/p/home
► Follow Twitter:…
► Source code: https://github.com/JohannesMilke/local_push_notification_ii
► Buy My Courses: https://johannesmilke.teachable.com/p/home
► Follow Twitter:…
New post on Flutter Dev Google group:
Regarding Flutter Map Plugin
Dear sir, for last 6 months i am facing problem with Google_Maps_Flutter plugin unable to find example code. 1. their is no sample code for line draw between coordinates. 2. unable to apply moving effect like. [image: moving-animtion.gif]
April 17, 2019 at 12:04PM by prince.g...@gmail.com
http://bit.ly/2InjDRj
Regarding Flutter Map Plugin
Dear sir, for last 6 months i am facing problem with Google_Maps_Flutter plugin unable to find example code. 1. their is no sample code for line draw between coordinates. 2. unable to apply moving effect like. [image: moving-animtion.gif]
April 17, 2019 at 12:04PM by prince.g...@gmail.com
http://bit.ly/2InjDRj
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:
Can I use my app from google voice?
I need to call on a method in my app (add a payment) and pass some parameters "i paid 50$ on gas" i have the app ready but i cant figure out how to integrate google assistant
April 17, 2019 at 03:05PM by Abbas Moussa
http://bit.ly/2IFQZKr
Can I use my app from google voice?
I need to call on a method in my app (add a payment) and pass some parameters "i paid 50$ on gas" i have the app ready but i cant figure out how to integrate google assistant
April 17, 2019 at 03:05PM by Abbas Moussa
http://bit.ly/2IFQZKr
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 moving text widget.
http://bit.ly/2Va9Sf6
April 17, 2019 at 03:46PM by divyanshub024
http://bit.ly/2KPz46O
Flutter moving text widget.
http://bit.ly/2Va9Sf6
April 17, 2019 at 03:46PM by divyanshub024
http://bit.ly/2KPz46O
Stack Overflow
How get moving text in widget with given width
I am building a radio app. Like in Spotify, there is a bar with the current title and artist, the text should be in one line and in a given width. How can I let the text move from right to left and...
New post on /r/flutterdev subreddit:
Flutter page route transition
http://bit.ly/2V4x6mP
April 17, 2019 at 03:28PM by divyanshub024
http://bit.ly/2GwuAgb
Flutter page route transition
http://bit.ly/2V4x6mP
April 17, 2019 at 03:28PM by divyanshub024
http://bit.ly/2GwuAgb
GitHub
divyanshub024/Flutter-page-route-transition
Contribute to divyanshub024/Flutter-page-route-transition development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Using google assistant with my flutter app?
I have an app that records the payments i do. I would like to be able to tell google assistant to open the app and record a payment (I have in the app a function that can parse the audio string and call on the function that adds payment if that helps), which would then be uploaded to the database and recorded. Is this possible? Example of what i want: "Ok google, tell My app that i spent x dollars." if so what's the best way?
April 17, 2019 at 02:53PM by Arcanefall_flutter
http://bit.ly/2XjSimA
Using google assistant with my flutter app?
I have an app that records the payments i do. I would like to be able to tell google assistant to open the app and record a payment (I have in the app a function that can parse the audio string and call on the function that adds payment if that helps), which would then be uploaded to the database and recorded. Is this possible? Example of what i want: "Ok google, tell My app that i spent x dollars." if so what's the best way?
April 17, 2019 at 02:53PM by Arcanefall_flutter
http://bit.ly/2XjSimA
reddit
r/FlutterDev - Using google assistant with my flutter app?
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter OnBoarding App UI - Speed Code
https://www.youtube.com/watch?v=Cp_M-x9BbWk
April 17, 2019 at 04:35PM by abdihamid10
http://bit.ly/2v6ytmD
Flutter OnBoarding App UI - Speed Code
https://www.youtube.com/watch?v=Cp_M-x9BbWk
April 17, 2019 at 04:35PM by abdihamid10
http://bit.ly/2v6ytmD
YouTube
Flutter Onboarding App UI Concept - Speed Code
Thanks for Watching :)
Make sure to like + Subscribe For More!
Source Code: "https://github.com/devefy/Flutter-Onboarding"
Design Credit: http://bit.ly/2GjI52p
MUSIC CREDIT - BE FRANKY
YT : https://www.youtube.com/BeFrankyMusic
IG : @ befranky
FB :…
Make sure to like + Subscribe For More!
Source Code: "https://github.com/devefy/Flutter-Onboarding"
Design Credit: http://bit.ly/2GjI52p
MUSIC CREDIT - BE FRANKY
YT : https://www.youtube.com/BeFrankyMusic
IG : @ befranky
FB :…
New post on /r/flutterdev subreddit:
Custom animated control elements with Flutter
http://bit.ly/2V5JP8N
April 17, 2019 at 05:34PM by felixlein
http://bit.ly/2UEMqr4
Custom animated control elements with Flutter
http://bit.ly/2V5JP8N
April 17, 2019 at 05:34PM by felixlein
http://bit.ly/2UEMqr4
Medium
Custom animated control elements with Flutter
In this article I want to show you, how to use the simple_animations package for creating custom animated control elements.
New post on /r/flutterdev subreddit:
FlutterUI - Clean Designs - Restaurant reviews
https://youtu.be/Ea5zQ9yF88Y
April 17, 2019 at 06:01PM by rajayogan27
http://bit.ly/2IqxoyD
FlutterUI - Clean Designs - Restaurant reviews
https://youtu.be/Ea5zQ9yF88Y
April 17, 2019 at 06:01PM by rajayogan27
http://bit.ly/2IqxoyD
YouTube
FlutterUI - Clean Designs - Restaurant reviews
Support me - https://paypal.me/RajaYogan Need an app ? - https://about.me/rajayogan Buy my course - https://www.udemy.com/learn-flutter-from-scratch/?couponC...
New post on /r/flutterdev subreddit:
Is a chat app possible in flutter with background service without native code.
Is creating a Chat application like whatsapp is possible using flutter? Which stores the chat data locally. If not what type of chat application is possible using flutter? Does it support background service or push notifications when new notifications arrive?
April 17, 2019 at 06:24PM by darshank5761
http://bit.ly/2V91RXT
Is a chat app possible in flutter with background service without native code.
Is creating a Chat application like whatsapp is possible using flutter? Which stores the chat data locally. If not what type of chat application is possible using flutter? Does it support background service or push notifications when new notifications arrive?
April 17, 2019 at 06:24PM by darshank5761
http://bit.ly/2V91RXT
reddit
r/FlutterDev - Is a chat app possible in flutter with background service without native code.
0 votes and 4 comments so far on Reddit