Reddit: Flutter Layout: App demonstrating various Flutter layouts.
https://ift.tt/2GNoDJN
Submitted May 24, 2018 at 11:18PM by Purple_Pizzazz
via reddit https://ift.tt/2Lv5RKu
https://ift.tt/2GNoDJN
Submitted May 24, 2018 at 11:18PM by Purple_Pizzazz
via reddit https://ift.tt/2Lv5RKu
GitHub
bizz84/layout-demo-flutter
layout-demo-flutter - Super Useful Flutter Layouts - Right in Your Pocket. 😉
Reddit: Is Flutter compatible with Google Play's new Android App Bundle?
Video for reference:https://www.youtube.com/watch?v=9D63S4ZRBlsTLDW; publish bundle to Play, Play generates custom APK's for each user's device, benefit = smaller APKs
Submitted May 25, 2018 at 03:30AM by johnwayne2413
via reddit https://ift.tt/2knZaxN
Video for reference:https://www.youtube.com/watch?v=9D63S4ZRBlsTLDW; publish bundle to Play, Play generates custom APK's for each user's device, benefit = smaller APKs
Submitted May 25, 2018 at 03:30AM by johnwayne2413
via reddit https://ift.tt/2knZaxN
YouTube
Publish smaller apps with the Android App Bundle
An Android App Bundle is a new upload format that includes all your app’s compiled code and resources, but defers APK generation and signing to Google Play.
Google Play’s new app serving model, called Dynamic Delivery, then uses your app bundle to generate…
Google Play’s new app serving model, called Dynamic Delivery, then uses your app bundle to generate…
Reddit: Free flutter course in Spanish
https://www.youtube.com/playlist?list=PLl_hIu4u7P6672anZPqgEkWTQkSBOL56_
Submitted May 25, 2018 at 05:06AM by Gyga8K
via reddit https://ift.tt/2s7gwmO
https://www.youtube.com/playlist?list=PLl_hIu4u7P6672anZPqgEkWTQkSBOL56_
Submitted May 25, 2018 at 05:06AM by Gyga8K
via reddit https://ift.tt/2s7gwmO
YouTube
Curso Básico de Flutter - YouTube
GGroup: Generic Image Icon Button?
Greetings, I'd like to know if there is a better way to create an icon button with an image, not using Material Design / Cupertino widgets. The way I typically do this in iOS is I define a comfortable "tap area", roughly a 35 - 50px square, that is greater than the size of the button icon.
Submitted May 25, 2018 at 06:32AM by Nicholas Manning
via Flutter Dev https://ift.tt/2IN5CJ2
Greetings, I'd like to know if there is a better way to create an icon button with an image, not using Material Design / Cupertino widgets. The way I typically do this in iOS is I define a comfortable "tap area", roughly a 35 - 50px square, that is greater than the size of the button icon.
Submitted May 25, 2018 at 06:32AM by Nicholas Manning
via Flutter Dev https://ift.tt/2IN5CJ2
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: Using Tab and Scroll Controllers and The Nested Scroll View in Flutter
https://m.youtube.com/watch?v=3Cm7WzH3gb8&feature=youtu.be
Submitted May 25, 2018 at 07:30AM by Purple_Pizzazz
via reddit https://ift.tt/2s9Yy28
https://m.youtube.com/watch?v=3Cm7WzH3gb8&feature=youtu.be
Submitted May 25, 2018 at 07:30AM by Purple_Pizzazz
via reddit https://ift.tt/2s9Yy28
YouTube
Using Tab and Scroll Controllers and The Nested Scroll View in Dart's Flutter Framework
In this tutorial, we take a look Tab and Scroll Controllers as well as the Nested Scroll View Widget. Source Code: https://github.com/tensor-programming/flut...
Reddit: Is there a way to tell Flutter that two widgets are the same and shouldn't be updated?
I've read all (OK. Not all) about MVC (Model-View-Controller) and MVVM (Model-View-ViewModel).Both of these discuss how to keep state/Business Logic (The "Model") away from the presentation, and have small examples of code, where the Controller or ViewModel send messages (either directly or through the View) to the Model, and the Model sends messages to the ViewModel to repaint.I understand how this should be modeled where the model is small and is a single class can manage all the program's state.But what should I do if there's multiple levels of state. For example, your Model has complicated logic, let's say it's a multiplayer game. So it holds levels, enemies, etc, but also has to keep user information (username, userid, favorite line, gravatar, etc.). All of it (ok, not the userid) can change both inside the app and from outside (say on through the website), and updates have to show up inside the app.So the "simple" MV* logic wouldn't work (or would get crazy unwieldy) - I don't want the controller to hold 35 variables and maintain the state on its own.So, I break up the User into its own class:
Submitted May 25, 2018 at 09:07AM by allowthere
via reddit https://ift.tt/2J58552
I've read all (OK. Not all) about MVC (Model-View-Controller) and MVVM (Model-View-ViewModel).Both of these discuss how to keep state/Business Logic (The "Model") away from the presentation, and have small examples of code, where the Controller or ViewModel send messages (either directly or through the View) to the Model, and the Model sends messages to the ViewModel to repaint.I understand how this should be modeled where the model is small and is a single class can manage all the program's state.But what should I do if there's multiple levels of state. For example, your Model has complicated logic, let's say it's a multiplayer game. So it holds levels, enemies, etc, but also has to keep user information (username, userid, favorite line, gravatar, etc.). All of it (ok, not the userid) can change both inside the app and from outside (say on through the website), and updates have to show up inside the app.So the "simple" MV* logic wouldn't work (or would get crazy unwieldy) - I don't want the controller to hold 35 variables and maintain the state on its own.So, I break up the User into its own class:
class User { int id; String name; String gravatar; }And the gameplay logic into its own class
class GameLogic { int amountOfEnemies; int Level; }etc.Now my question is how should the inner classes communicate, and how should they be decoupled?For example, User has to update GameLogic. Should the GameLogic contain a pointer to the Model (dependency injection)?Yes, I know that Flutter doesn't work well with games. It's just an example.
Submitted May 25, 2018 at 09:07AM by allowthere
via reddit https://ift.tt/2J58552
reddit
r/FlutterDev - Is there a way to tell Flutter that two widgets are the same and shouldn't be updated?
2 votes and 0 so far on reddit
GGroup: What is the best way to get current locale for android and iOS?
Hi, I have a Flutter Project and need to get user locale so, my first question is. * 1) What is the best way to get current locale for android and iOS?* I have a Flutter Project and with user locale it loads the supported internationalisation using json language file. So my second
Submitted May 25, 2018 at 10:56AM by Niyazi Toros
via Flutter Dev https://ift.tt/2shOYun
Hi, I have a Flutter Project and need to get user locale so, my first question is. * 1) What is the best way to get current locale for android and iOS?* I have a Flutter Project and with user locale it loads the supported internationalisation using json language file. So my second
Submitted May 25, 2018 at 10:56AM by Niyazi Toros
via Flutter Dev https://ift.tt/2shOYun
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: [Question] How to connect to separate firebase project for debug builds on iOS
Hi There!So I'm trying to convert an app to flutter and have a live firebase project for my current project. But obviously I would like to connect to a different FB project for my debug builds. To do that for my Android flutter debug builds I did the following:Downloaded the google-services.json for the debug projectDumped this file in [flutter project]/android/app/src/debug folderUpdated my android project's build.gradle file buildTypes section to include debug { signingConfig signingConfigs.debug applicationIdSuffix ".debug" versionNameSuffix '-DEBUG' }Profit!But what is the equivalent of this on iOS? Where can I leave the GoogleService-Info.plist debug file in the xcode project so that it gets picked up during debug builds and how do I add a suffix to the app's Bundle Identifier? Or am I missing a way more obvious way to handle this? Thanks!
Submitted May 25, 2018 at 11:21AM by cuberob
via reddit https://ift.tt/2shS1mj
Hi There!So I'm trying to convert an app to flutter and have a live firebase project for my current project. But obviously I would like to connect to a different FB project for my debug builds. To do that for my Android flutter debug builds I did the following:Downloaded the google-services.json for the debug projectDumped this file in [flutter project]/android/app/src/debug folderUpdated my android project's build.gradle file buildTypes section to include debug { signingConfig signingConfigs.debug applicationIdSuffix ".debug" versionNameSuffix '-DEBUG' }Profit!But what is the equivalent of this on iOS? Where can I leave the GoogleService-Info.plist debug file in the xcode project so that it gets picked up during debug builds and how do I add a suffix to the app's Bundle Identifier? Or am I missing a way more obvious way to handle this? Thanks!
Submitted May 25, 2018 at 11:21AM by cuberob
via reddit https://ift.tt/2shS1mj
reddit
[Question] How to connect to separate firebase... • r/FlutterDev
Hi There! So I'm trying to convert an app to flutter and have a live firebase project for my current project. But obviously I would like to...
Reddit: prompts: Rich, simple, synchronous command-line prompt library for Dart.
https://ift.tt/2knknYG
Submitted May 25, 2018 at 02:52PM by Purple_Pizzazz
via reddit https://ift.tt/2x8Xwcx
https://ift.tt/2knknYG
Submitted May 25, 2018 at 02:52PM by Purple_Pizzazz
via reddit https://ift.tt/2x8Xwcx
GitHub
thosakwe/prompts
prompts - Rich, simple, synchronous command-line prompt library for Dart.
Reddit: Dropdown menu plugin for Flutter
https://ift.tt/2LvZN4q
Submitted May 25, 2018 at 02:47PM by Purple_Pizzazz
via reddit https://ift.tt/2sbN4vf
https://ift.tt/2LvZN4q
Submitted May 25, 2018 at 02:47PM by Purple_Pizzazz
via reddit https://ift.tt/2sbN4vf
Dart Packages
dropdown_menu | Flutter Package
dropdown_menu Flutter and Dart package - A dropdown menu for flutter.
Reddit: codable: A library for converting dynamic, structured data (JSON, YAML) into Dart types.
https://ift.tt/2Lwll18
Submitted May 25, 2018 at 03:34PM by Purple_Pizzazz
via reddit https://ift.tt/2J8EuI6
https://ift.tt/2Lwll18
Submitted May 25, 2018 at 03:34PM by Purple_Pizzazz
via reddit https://ift.tt/2J8EuI6
GitHub
stablekernel/dart-codable
dart-codable - A library for converting dynamic, structured data (JSON, YAML) into Dart types.
GGroup: Proposed changes to image loading & caching
Howdy, I've created a proposal for updates to the Image Loading and Image Caching systems in Flutter which address some notable issues such as: * Image cache size is based on # of images instead of memory. * image cache doesn't respond to memory pressure. * Image caching behavior isn't
Submitted May 25, 2018 at 08:24PM by Jonah Williams
via Flutter Dev https://ift.tt/2sbDGHS
Howdy, I've created a proposal for updates to the Image Loading and Image Caching systems in Flutter which address some notable issues such as: * Image cache size is based on # of images instead of memory. * image cache doesn't respond to memory pressure. * Image caching behavior isn't
Submitted May 25, 2018 at 08:24PM by Jonah Williams
via Flutter Dev https://ift.tt/2sbDGHS
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 — Localization: step by step
https://ift.tt/2INNoXZ
Submitted May 25, 2018 at 09:22PM by Purple_Pizzazz
via reddit https://ift.tt/2s8ARZ1
https://ift.tt/2INNoXZ
Submitted May 25, 2018 at 09:22PM by Purple_Pizzazz
via reddit https://ift.tt/2s8ARZ1
Medium
Flutter — Localization: step by step
If you’re reading this, you probably already know the benefits of making an internationalized app, like expand your public, ux, etc. So…
GGroup: Flutter stack clicking through top object
I coded a menu in my flutter app, it is a rectangle that you can draw up from the bottom of the screen, and its in a stack with my main page, so it overlays the main page. But when i click on one of the Inkwells in my menu, it instead clicks on the same position on the Card below it(tested that
Submitted May 25, 2018 at 10:58PM by leo nx
via Flutter Dev https://ift.tt/2xk4RpU
I coded a menu in my flutter app, it is a rectangle that you can draw up from the bottom of the screen, and its in a stack with my main page, so it overlays the main page. But when i click on one of the Inkwells in my menu, it instead clicks on the same position on the Card below it(tested that
Submitted May 25, 2018 at 10:58PM by leo nx
via Flutter Dev https://ift.tt/2xk4RpU
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: The way im learning Futter's Widget set...
https://ift.tt/2IOyroG
Submitted May 26, 2018 at 05:50AM by movdev
via reddit https://ift.tt/2sec8Bz
https://ift.tt/2IOyroG
Submitted May 26, 2018 at 05:50AM by movdev
via reddit https://ift.tt/2sec8Bz
GGroup: Is flutter dead too?
I am new person to enter into flutter framework which is based on DART language, used by google to create large applications? But Dart is dead. one amongst worst languages to learn in 2018? (Google Search Results) If It is so then why we are using it in flutter? why not some other language?
Submitted May 26, 2018 at 06:35AM by Satyapriy Chindak
via Flutter Dev https://ift.tt/2kppU0N
I am new person to enter into flutter framework which is based on DART language, used by google to create large applications? But Dart is dead. one amongst worst languages to learn in 2018? (Google Search Results) If It is so then why we are using it in flutter? why not some other language?
Submitted May 26, 2018 at 06:35AM by Satyapriy Chindak
via Flutter Dev https://ift.tt/2kppU0N
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: Create Custom Router Transition in Flutter using PageRouteBuilder
https://ift.tt/2J86BHm
Submitted May 26, 2018 at 10:20AM by Elixane
via reddit https://ift.tt/2sdcfgX
https://ift.tt/2J86BHm
Submitted May 26, 2018 at 10:20AM by Elixane
via reddit https://ift.tt/2sdcfgX
Medium
Create Custom Router Transition in Flutter using PageRouteBuilder
Flutter provides default transition whenever user navigating between the routes. If you think it’s kind of boring, don’t worry. Flutter…
GGroup: Transform Gesture Detector in Flutter(with Stack)
Hey, in my code i use a gesture detector to pull up my menu as the user is dragging. But when i pull the menu up, the hitbox of the GestureDetector doesn't change, so when i want to put it back down it only registers dragging on the initial hitbox, not the new one(where I transformed the widget
Submitted May 26, 2018 at 11:27AM by leo nx
via Flutter Dev https://ift.tt/2J9l0mx
Hey, in my code i use a gesture detector to pull up my menu as the user is dragging. But when i pull the menu up, the hitbox of the GestureDetector doesn't change, so when i want to put it back down it only registers dragging on the initial hitbox, not the new one(where I transformed the widget
Submitted May 26, 2018 at 11:27AM by leo nx
via Flutter Dev https://ift.tt/2J9l0mx
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: Flutter and Firestore, Stream builder
Hi, I am trying to stream some data from firestore to flutter app. Problem that I am facing is that getting the data from firestore in to the Widget that I created. I am trying to follow the mountain stream example in the official firestore plugin git page. But, ofcourse modified to my code and
Submitted May 26, 2018 at 02:32PM by Raju Naga
via Flutter Dev https://ift.tt/2J5jxO3
Hi, I am trying to stream some data from firestore to flutter app. Problem that I am facing is that getting the data from firestore in to the Widget that I created. I am trying to follow the mountain stream example in the official firestore plugin git page. But, ofcourse modified to my code and
Submitted May 26, 2018 at 02:32PM by Raju Naga
via Flutter Dev https://ift.tt/2J5jxO3
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 on raspberry pi?
Anyone had success trying to run flutter on raspberry pi? I believe it has some variants of android running on it? Is it compatible with pi's hardware?If yes, would it support mouse interaction or would it depend on touch screen ?
Submitted May 26, 2018 at 04:00PM by movdev
via reddit https://ift.tt/2Jbg1ll
Anyone had success trying to run flutter on raspberry pi? I believe it has some variants of android running on it? Is it compatible with pi's hardware?If yes, would it support mouse interaction or would it depend on touch screen ?
Submitted May 26, 2018 at 04:00PM by movdev
via reddit https://ift.tt/2Jbg1ll
reddit
r/FlutterDev - Flutter on raspberry pi?
1 votes and 1 so far on reddit