Reddit: [Dart and Flutter] - Animations Made Easy
https://www.youtube.com/attribution_link?a=zoZTm3aHkrU&u=%2Fwatch%3Fv%3D0bzapdl5uew%26feature%3Dshare
Submitted August 28, 2018 at 06:54PM by miltux
via reddit https://ift.tt/2PMu5lQ
https://www.youtube.com/attribution_link?a=zoZTm3aHkrU&u=%2Fwatch%3Fv%3D0bzapdl5uew%26feature%3Dshare
Submitted August 28, 2018 at 06:54PM by miltux
via reddit https://ift.tt/2PMu5lQ
YouTube
[Dart and Flutter] - Animations Made Easy
Build multi-screen mobile apps using Dart and Flutter with this full length course: https://www.udemy.com/dart-and-flutter-the-complete-developers-guide/?cou...
Reddit: Wrap - Widget de Flutter de la Semana
https://www.youtube.com/attribution_link?a=_9x2S2dUw4M&u=%2Fwatch%3Fv%3Dz5iw2SeFx2M%26feature%3Dshare
Submitted August 28, 2018 at 07:48PM by miltux
via reddit https://ift.tt/2PMCCoX
https://www.youtube.com/attribution_link?a=_9x2S2dUw4M&u=%2Fwatch%3Fv%3Dz5iw2SeFx2M%26feature%3Dshare
Submitted August 28, 2018 at 07:48PM by miltux
via reddit https://ift.tt/2PMCCoX
YouTube
Wrap - Flutter Widget of the Week
When you run out of room in your rows and columns, try Wrap instead! The Wrap widget lays out its children like a row or column, but when it runs out of room...
Dive deep into Flutter platform channels and learn how to add platform-specific code to your Flutter app. @mnravn covers message, method and event channels in this article.
Read it here ↓ https://t.co/ppl2Gav3ku— Flutter (@flutterio) August 28, 2018
August 28, 2018 at 09:00PM
via Twitter https://twitter.com/flutterio
Read it here ↓ https://t.co/ppl2Gav3ku— Flutter (@flutterio) August 28, 2018
August 28, 2018 at 09:00PM
via Twitter https://twitter.com/flutterio
Twitter
Mikkel Nygaard Ravn (@mnravn) | Twitter
The latest Tweets from Mikkel Nygaard Ravn (@mnravn). Software engineer at Google. Arhus, Denmark
Reddit: Flutter Platform Channels
https://ift.tt/2Nq0DAt
Submitted August 28, 2018 at 09:35PM by dayanruben
via reddit https://ift.tt/2MVhkXs
https://ift.tt/2Nq0DAt
Submitted August 28, 2018 at 09:35PM by dayanruben
via reddit https://ift.tt/2MVhkXs
Medium
Flutter Platform Channels
“Nice UI. But how does Flutter deal with platform-specific APIs?”
Reddit: New Flutter Beta Upgrade available v0.6.0
Time to run Flutter upgrade v 0.60 is out
Submitted August 28, 2018 at 10:15PM by Pixelreddit
via reddit https://ift.tt/2LCWIhU
Time to run Flutter upgrade v 0.60 is out
Submitted August 28, 2018 at 10:15PM by Pixelreddit
via reddit https://ift.tt/2LCWIhU
reddit
r/FlutterDev - New Flutter Beta Upgrade available v0.6.0
1 vote and 0 comments so far on Reddit
Reddit: Quick tip — Resolving Dart package version conflicts, faster than ever
https://twitter.com/FlutterComm/status/1034539614026063873
Submitted August 28, 2018 at 10:39PM by Nash0x7E2
via reddit https://ift.tt/2LBbFRB
https://twitter.com/FlutterComm/status/1034539614026063873
Submitted August 28, 2018 at 10:39PM by Nash0x7E2
via reddit https://ift.tt/2LBbFRB
Twitter
Flutter Community
Quick tip — Resolving Dart package version conflicts, faster than ever" published in #FlutterCommunity by @koorankka https://t.co/wi8Q73nNaT @flutterfyi @flutterio @nlycskn #flutter
GGroup: Beta Update (v0.6.0)
We've just released a new build on the beta channel with version number v0.6.0. The new build is an update to beta 5. Here are some highlights from the change log: v0.6.0 - #20116 reduced release binary sizes by ~2MB - Dart SDK
Submitted August 28, 2018 at 11:10PM by Jonah Williams
via Flutter Dev https://ift.tt/2wmUi23
We've just released a new build on the beta channel with version number v0.6.0. The new build is an update to beta 5. Here are some highlights from the change log: v0.6.0 - #20116 reduced release binary sizes by ~2MB - Dart SDK
Submitted August 28, 2018 at 11:10PM by Jonah Williams
via Flutter Dev https://ift.tt/2wmUi23
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.
GGroup: [Breaking Change] iOS applications will need to register plugins at application start
I plan to commit https://ift.tt/2LzrlFa to fix runtime warnings on iOS (https://ift.tt/2MAb5Jt). However, this change will require that Flutter applications on iOS either: A. Register their plugins with the FlutterAppDelegate or with a FlutterPlugin
Submitted August 28, 2018 at 11:24PM by James Lin
via Flutter Dev https://ift.tt/2LzrmJe
I plan to commit https://ift.tt/2LzrlFa to fix runtime warnings on iOS (https://ift.tt/2MAb5Jt). However, this change will require that Flutter applications on iOS either: A. Register their plugins with the FlutterAppDelegate or with a FlutterPlugin
Submitted August 28, 2018 at 11:24PM by James Lin
via Flutter Dev https://ift.tt/2LzrmJe
GitHub
Make `FlutterAppDelegate` respond to life cycle events dynamically by jamesderlin · Pull Request #6086 · flutter/engine
Make FlutterAppDelegate respond to various application life cycle
events (e.g. applicationDidEnterBackground:,
applicationWillEnterForeground:, etc.) dynamically by forwarding
them to the FlutterPl...
events (e.g. applicationDidEnterBackground:,
applicationWillEnterForeground:, etc.) dynamically by forwarding
them to the FlutterPl...
Reddit: Displaying an article using Flutter
Hey,We are a requirement to display some articles/documents within our app. The user will click a button, we display the article and they can read it and scroll through etc. The articles are basically paragraphs of text, with maybe some light graphics, tables, lists, headings, different colours for some bits of text.I was thinking we would just take some html and pass it to some component, but there doesn't really seem to be a good html component. Ideally I wouldn't want to take the user to a web browser. They should feel like they are still in the mobile app rather than their web browser.I see there is WebView (https://developer.android.com/reference/android/webkit/WebView), but I'm not sure how to integrate that with Flutter. I am noob to android development as well :-).Does anyone have a suggestion of how to display some nicely formatted text in an android mobile app?
Submitted August 28, 2018 at 11:38PM by onemanforeachvill
via reddit https://ift.tt/2ohPcQo
Hey,We are a requirement to display some articles/documents within our app. The user will click a button, we display the article and they can read it and scroll through etc. The articles are basically paragraphs of text, with maybe some light graphics, tables, lists, headings, different colours for some bits of text.I was thinking we would just take some html and pass it to some component, but there doesn't really seem to be a good html component. Ideally I wouldn't want to take the user to a web browser. They should feel like they are still in the mobile app rather than their web browser.I see there is WebView (https://developer.android.com/reference/android/webkit/WebView), but I'm not sure how to integrate that with Flutter. I am noob to android development as well :-).Does anyone have a suggestion of how to display some nicely formatted text in an android mobile app?
Submitted August 28, 2018 at 11:38PM by onemanforeachvill
via reddit https://ift.tt/2ohPcQo
reddit
r/FlutterDev - Displaying an article using Flutter
1 vote and 0 comments so far on Reddit
Reddit: Simple flutter animations can create amazing effects. Check out FlutterScreens on GitHub.
https://ift.tt/2MFm18I
Submitted August 28, 2018 at 11:14PM by samarthagarwal
via reddit https://ift.tt/2LAh23x
https://ift.tt/2MFm18I
Submitted August 28, 2018 at 11:14PM by samarthagarwal
via reddit https://ift.tt/2LAh23x
reddit
r/FlutterDev - Simple flutter animations can create amazing effects. Check out FlutterScreens on GitHub.
2 votes and 1 comment so far on Reddit
GGroup: Breaking change to google_maps_flutter
https://ift.tt/2LBQrD9 changes the public API of the google_maps_flutter plugin. This is not technically a breaking change as the plugin was not yet published, but I thought to give a heads up in case anyone is using it. The PR changes the plugin to use AndroidView on
Submitted August 29, 2018 at 04:41AM by Amir Hardon
via Flutter Dev https://ift.tt/2N3Mpbo
https://ift.tt/2LBQrD9 changes the public API of the google_maps_flutter plugin. This is not technically a breaking change as the plugin was not yet published, but I thought to give a heads up in case anyone is using it. The PR changes the plugin to use AndroidView on
Submitted August 29, 2018 at 04:41AM by Amir Hardon
via Flutter Dev https://ift.tt/2N3Mpbo
GitHub
Port google_maps_flutter to use AndroidView for embedding the map. by amirh · Pull Request #743 · flutter/plugins
This change adds a GoogleMap widget which shows a map as part of the widget tree.
Each map uses a dedicated method channel named 'plugins.flutter.io/google_maps$id',
The Java GoogleMapsCon...
Each map uses a dedicated method channel named 'plugins.flutter.io/google_maps$id',
The Java GoogleMapsCon...
GGroup: Json convert
Hi All, I am getting confused how to I handle below Json format. { "contacts": [{ "name": "Fred F", "times": 3, "last_active": 1535227448 }, { "name": "Wilma F",
Submitted August 29, 2018 at 06:00AM by Sanjay Tejani
via Flutter Dev https://ift.tt/2wvOanp
Hi All, I am getting confused how to I handle below Json format. { "contacts": [{ "name": "Fred F", "times": 3, "last_active": 1535227448 }, { "name": "Wilma F",
Submitted August 29, 2018 at 06:00AM by Sanjay Tejani
via Flutter Dev https://ift.tt/2wvOanp
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.
GGroup: CircularProgressIndicator does not use backgroundColor property
When I see the source code for CircularProgressIndicator versus LinearProgressIndicator, the circularprogressindicator does not pass the background Color to it's painter, hence this value does not do anything. Should I file a bug?
Submitted August 29, 2018 at 07:43AM by Jagannathan Srinivasan
via Flutter Dev https://ift.tt/2PKVftl
When I see the source code for CircularProgressIndicator versus LinearProgressIndicator, the circularprogressindicator does not pass the background Color to it's painter, hence this value does not do anything. Should I file a bug?
Submitted August 29, 2018 at 07:43AM by Jagannathan Srinivasan
via Flutter Dev https://ift.tt/2PKVftl
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.
Reddit: A simple Search Bar in Flutter 🔎 🦋
https://ift.tt/2MWU23w
Submitted August 29, 2018 at 09:45AM by Elixane
via reddit https://ift.tt/2LE9yfQ
https://ift.tt/2MWU23w
Submitted August 29, 2018 at 09:45AM by Elixane
via reddit https://ift.tt/2LE9yfQ
Medium
A simple Search Bar in Flutter 🔎 🦋
One hurdle I recently overcame while developing a mobile Application using Flutter was the lack of a built in search bar Widget, analogous…
GGroup: How to add color to Icon in buildButtonColumn()
Eg: buildButtonColumn(Icons.call, 'CALL'), buildButtonColumn(Icons.near_me, 'ROUTE'), buildButtonColumn(Icons.share, 'SHARE'),
Submitted August 29, 2018 at 03:54PM by jayashree prasad
via Flutter Dev https://ift.tt/2BXZLBJ
Eg: buildButtonColumn(Icons.call, 'CALL'), buildButtonColumn(Icons.near_me, 'ROUTE'), buildButtonColumn(Icons.share, 'SHARE'),
Submitted August 29, 2018 at 03:54PM by jayashree prasad
via Flutter Dev https://ift.tt/2BXZLBJ
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.
GGroup: Silent buttons
Hi everyone, I'd like to create a button (raised or flat) that doesn't make any sound when tapped as I want to add my own sound to the onPressed event. I haven't found any info on how to "silence" buttons. Thanks. Andrea
Submitted August 29, 2018 at 04:43PM by Andrea Haku
via Flutter Dev https://ift.tt/2NuChpn
Hi everyone, I'd like to create a button (raised or flat) that doesn't make any sound when tapped as I want to add my own sound to the onPressed event. I haven't found any info on how to "silence" buttons. Thanks. Andrea
Submitted August 29, 2018 at 04:43PM by Andrea Haku
via Flutter Dev https://ift.tt/2NuChpn
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.
Reddit: Documenting all of your app's source code, a visual overview. Anyone doing this?
It's awesome how IDEs add a documentation overlay to your code. But when your project gets bigger, or when you bring in a new person to the team, it's nice to have one visual overview, like a mindmap to all your code. What classes are there, what methods, what's public and what's private of each. It would be extra awesome if there was a way to automate creating and updating it too.I'm still a one guy company, but already I'm getting lost in my own head here. Any help appreciated, thanks.
Submitted August 29, 2018 at 05:09PM by somenick
via reddit https://ift.tt/2omhOrM
It's awesome how IDEs add a documentation overlay to your code. But when your project gets bigger, or when you bring in a new person to the team, it's nice to have one visual overview, like a mindmap to all your code. What classes are there, what methods, what's public and what's private of each. It would be extra awesome if there was a way to automate creating and updating it too.I'm still a one guy company, but already I'm getting lost in my own head here. Any help appreciated, thanks.
Submitted August 29, 2018 at 05:09PM by somenick
via reddit https://ift.tt/2omhOrM
reddit
r/FlutterDev - Documenting all of your app's source code, a visual overview. Anyone doing this?
2 votes and 0 comments so far on Reddit
GGroup: does upgrading my flutter automatically upgrade flutter in my app the next time I run a build?
does upgrading my flutter automatically upgrade flutter in my app the next time I run a build?
Submitted August 29, 2018 at 05:39PM by Michael Tawiah Sowah
via Flutter Dev https://ift.tt/2wmHpFA
does upgrading my flutter automatically upgrade flutter in my app the next time I run a build?
Submitted August 29, 2018 at 05:39PM by Michael Tawiah Sowah
via Flutter Dev https://ift.tt/2wmHpFA
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.
Reddit: Flutter from scratch - Authentication
https://ift.tt/2BZfQXZ
Submitted August 29, 2018 at 06:47PM by rajayogan27
via reddit https://ift.tt/2PLvIAa
https://ift.tt/2BZfQXZ
Submitted August 29, 2018 at 06:47PM by rajayogan27
via reddit https://ift.tt/2PLvIAa
T-Pub :)
Flutter – Authentication
Hi Friends, Hope you are all well. In this post let’s talk about Authentication using Firebase in your flutter apps. To learn the basics of flutter get my course – Click here. Other flutter c…
GGroup: Seat Map Layout using flutter
Hi Friends, Can someone help me to get a seat map design layout as the attached image using flutter
Submitted August 29, 2018 at 07:09PM by kamesh bala
via Flutter Dev https://ift.tt/2wq7XWp
Hi Friends, Can someone help me to get a seat map design layout as the attached image using flutter
Submitted August 29, 2018 at 07:09PM by kamesh bala
via Flutter Dev https://ift.tt/2wq7XWp
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.
Building an app that is neither Material nor iOS-style? Instead of MaterialApp or CupertinoApp, you can use WidgetsApp — and do something wildly custom.#WidgetWednesday pic.twitter.com/g7mA9u4GCl— Flutter (@flutterio) August 29, 2018
August 29, 2018 at 09:16PM
via Twitter https://twitter.com/flutterio
August 29, 2018 at 09:16PM
via Twitter https://twitter.com/flutterio
Twitter
#widgetwednesday hashtag on Twitter
On Aug 8 @flutterio tweeted: "Allow users to drag & drop in your a.." - read what others are saying and join the conversation.