New post on /r/flutterdev subreddit:
ListView Navigation
Hello everyone, how can I add a navigation route to each tile of the ExpansionTile, someone can help me?In the subtitles I want to add the navigation routes.
October 16, 2019 at 04:28AM by tutegomeze
https://ift.tt/33yKlwL
ListView Navigation
Hello everyone, how can I add a navigation route to each tile of the ExpansionTile, someone can help me?In the subtitles I want to add the navigation routes.
List<MyTile> listOfTiles = <MyTile>[ MyTile('El Triangulador', <MyTile>[ MyTile('● Definición'), MyTile('● Personas que intervienen'), MyTile('● Actitudes sanas para resolver'), ]), MyTile('El Frustrador', <MyTile>[ MyTile('● Definición'), MyTile('● Rasgos'), MyTile('● Actitudes frente a la frustración'), MyTile('● Criando hijos sanos'), ]), ] class ListViewHome extends StatelessWidget { @override Widget build(BuildContext context) { // TODO: implement build return ListView.builder( itemCount: listOfTiles.length, itemBuilder: (context, int index) { return StuffInTiles(listOfTiles[index]); }, ); } } class StuffInTiles extends StatelessWidget { final MyTile myTile; StuffInTiles(this.myTile); @override Widget build(BuildContext context) { // TODO: implement build return _buildTiles(myTile); } ///Second Heads Widget _buildTiles(MyTile t) { if (t.children.isEmpty) { return ListTile( title: Text( t.title, textScaleFactor: 1.2, style: listViewHome, ), ); } ///First Head return ExpansionTile( key: PageStorageKey<MyTile>(t), title: Text( t.title, textScaleFactor: 1.5, style: listViewHome, ), leading: CircleAvatar( backgroundColor: Colors.white, backgroundImage: AssetImage('assets/icons/toxic.png'), ), children: t.children.map(_buildTiles).toList(), ); } } class MyTile { String title; List<MyTile> children; MyTile(this.title, [this.children = const <MyTile>[]]); }
October 16, 2019 at 04:28AM by tutegomeze
https://ift.tt/33yKlwL
reddit
ListView Navigation
Hello everyone, how can I add a navigation route to each tile of the ExpansionTile, someone can help me? In the subtitles I want to add the...
New post on /r/flutterdev subreddit:
Firebase App Distribution with Codemagic
https://ift.tt/2MXsZTR
October 16, 2019 at 08:50AM by Gigatronbot
https://ift.tt/2OTD8mW
Firebase App Distribution with Codemagic
https://ift.tt/2MXsZTR
October 16, 2019 at 08:50AM by Gigatronbot
https://ift.tt/2OTD8mW
Codemagic blog
Firebase App Distribution with Codemagic
Publishing Android apps to Firebase App Distribution — a better, faster approach for user testing
New post on /r/flutterdev subreddit:
Flutter Design Patterns: An overview of Singleton design pattern and its implementation in Dart and Flutter
https://ift.tt/2oKL67e
October 16, 2019 at 08:32AM by mkobuolys
https://ift.tt/2VL7RUu
Flutter Design Patterns: An overview of Singleton design pattern and its implementation in Dart and Flutter
https://ift.tt/2oKL67e
October 16, 2019 at 08:32AM by mkobuolys
https://ift.tt/2VL7RUu
Medium
Flutter Design Patterns: 1 — Singleton
Overview of Singleton design pattern and its implementation in Dart and Flutter
New post on /r/flutterdev subreddit:
Debug errors I can't understand
I'm currently learning Flutter and from some reasons when I've restarted my PC and tried to debug my app, I have the following errors:
October 16, 2019 at 09:23AM by Kadarach
https://ift.tt/2MjY9FF
Debug errors I can't understand
I'm currently learning Flutter and from some reasons when I've restarted my PC and tried to debug my app, I have the following errors:
Compiler message: ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/bidi_formatter.dart: Error: A file can't be part of more than one library.
Try moving the shared declarations into the libraries, or into a new library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.Dart: Context: Used as a part in this library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart: Context: Used as a part in this library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/bidi_utils.dart: Error: A file can't be part of more than one library.
Try moving the shared declarations into the libraries, or into a new library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.Dart: Context: Used as a part in this library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart: Context: Used as a part in this library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/compact_number_format.dart: Error: A file can't be part of more than one library. Try moving the shared declarations into the libraries, or into a new library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.Dart: Context: Used as a part in this library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart: Context: Used as a part in this library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/date_format.dart: Error: A file can't be part of more than one library. Try moving the shared declarations into the libraries, or into a new library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.Dart: Context: Used as a part in this library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart: Context: Used as a part in this library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/date_format_field.dart: Error: A file can't be part of more than one library. Try moving the shared declarations into the libraries, or into a new library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.Dart: Context: Used as a part in this library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart: Context: Used as a part in this library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/date_format_helpers.dart: Error: A file can't be part of more than one library. Try moving the shared declarations into the libraries, or into a new library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.Dart: Context: Used as a part in this library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart: Context: Used as a part in this library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/src/intl/number_format.dart: Error: A file can't be part of more than one library. Try moving the shared declarations into the libraries, or into a new library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.Dart: Context: Used as a part in this library. ../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart: Context: Used as a part in this library.
../../../AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/intl-0.15.8/lib/intl.dart:115:3: Error: Type 'DateFormat' not found.
Everything was working fine before.The import of intl.dart is correct.October 16, 2019 at 09:23AM by Kadarach
https://ift.tt/2MjY9FF
reddit
Debug errors I can't understand
I'm currently learning Flutter and from some reasons when I've restarted my PC and tried to debug my app, I have the following errors: ...
New post on /r/flutterdev subreddit:
Flutter app stuck on white screen at start up in android
Hi guys,I am new to flutter,I do have experience in Nadroid development and have even published an apps on the play store. Lately I have been interested in flutter and even did a few introductory concepts on it (CRUD). I took an open source project from github and changed only the google .json file so as to use my fire base backend. The app launches on my android device but is stuck on white screen. I have searched everywhere for this issue but no solution. Its been three days and I am losing my mind. Can anyone help me out here.The open source project is called Fluttergram.
October 16, 2019 at 12:02PM by fireking09
https://ift.tt/33zKtft
Flutter app stuck on white screen at start up in android
Hi guys,I am new to flutter,I do have experience in Nadroid development and have even published an apps on the play store. Lately I have been interested in flutter and even did a few introductory concepts on it (CRUD). I took an open source project from github and changed only the google .json file so as to use my fire base backend. The app launches on my android device but is stuck on white screen. I have searched everywhere for this issue but no solution. Its been three days and I am losing my mind. Can anyone help me out here.The open source project is called Fluttergram.
October 16, 2019 at 12:02PM by fireking09
https://ift.tt/33zKtft
reddit
Flutter app stuck on white screen at start up in android
Hi guys,I am new to flutter,I do have experience in Nadroid development and have even published an apps on the play store. Lately I have been...
New post on /r/flutterdev subreddit:
“Master Flutter Essentials: Intensify Powerful UIs”
https://medium.com/flutter-community/master-flutter-essentials-intensify-powerful-uis-d2e2aa6c79b8
October 16, 2019 at 12:01PM by adityapatnaik
https://ift.tt/31kCG3I
“Master Flutter Essentials: Intensify Powerful UIs”
https://medium.com/flutter-community/master-flutter-essentials-intensify-powerful-uis-d2e2aa6c79b8
October 16, 2019 at 12:01PM by adityapatnaik
https://ift.tt/31kCG3I
Medium
Master Flutter Essentials: Intensify Powerful UIs
This is the second episode in the quest to become a Master Flutter developer. In the last article, we covered the basics of flutter to get…
New post on /r/flutterdev subreddit:
Part two of moving from React to Flutter Web
Hey Flutter community!
Some time has passed and due to high engagement and interest, I've just published second part from my mini series of moving from React to Flutter Web.Let me know your comments, ideas, suggestions - anything! Hope you can find it helpful.Cheers
October 16, 2019 at 11:30AM by Deimantasa
https://ift.tt/2ONwajo
Part two of moving from React to Flutter Web
Hey Flutter community!
Some time has passed and due to high engagement and interest, I've just published second part from my mini series of moving from React to Flutter Web.Let me know your comments, ideas, suggestions - anything! Hope you can find it helpful.Cheers
October 16, 2019 at 11:30AM by Deimantasa
https://ift.tt/2ONwajo
Medium
P2 — From React to Flutter Web
Finally second part is out of my mini series of moving to Flutter Web. To understand whole project, you can visit Part 1 of this series.
New post on /r/flutterdev subreddit:
Java/Kotlin developer coming to dart or flutter? Swift/Go/Rust developer coming to dart or flutter? You want to run concurrent work in the background? Dart does not have thread but it has isolates, this package allow you to execute code into isolates using an api similar to Java executors.
https://ift.tt/2MO37cC
October 16, 2019 at 11:21AM by bitsydarel
https://ift.tt/2BeHOeW
Java/Kotlin developer coming to dart or flutter? Swift/Go/Rust developer coming to dart or flutter? You want to run concurrent work in the background? Dart does not have thread but it has isolates, this package allow you to execute code into isolates using an api similar to Java executors.
https://ift.tt/2MO37cC
October 16, 2019 at 11:21AM by bitsydarel
https://ift.tt/2BeHOeW
Dart packages
executorservices | Dart Package
A Dart package providing services that allow you to execute dart code in different executors, ex - isolates.
New post on Flutter Dev Google group:
hi guys im using switch widget , i want when the application is loaded to get initial value(bool ) from firebase and update the value when toggled , please can anyone help me out
October 16, 2019 at 02:12PM by ibrahim shehu ibrahim
https://ift.tt/32kAdrt
hi guys im using switch widget , i want when the application is loaded to get initial value(bool ) from firebase and update the value when toggled , please can anyone help me out
October 16, 2019 at 02:12PM by ibrahim shehu ibrahim
https://ift.tt/32kAdrt
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:
Free App Feedback for your Flutter Apps (in Munich)
We are trying out a new format which is called "App Advice" where we help different people in the community with their mobile apps. Besides Android and iOS, we also offer app advice for Flutter! 💪🏼
So if you are interested, take your laptop with your flutter project and we can sit together and look into your project. 😊We created a form where people can sign up.
https://quickbirdstudios.com/appadviceIf you don't live nearby you can just drop me a message with your repository and a few points where you want to have feedback (e.g. network layer, state management, tests, UI/Widgets)
October 16, 2019 at 02:44PM by julianlenz
https://ift.tt/2ppJOyq
Free App Feedback for your Flutter Apps (in Munich)
We are trying out a new format which is called "App Advice" where we help different people in the community with their mobile apps. Besides Android and iOS, we also offer app advice for Flutter! 💪🏼
So if you are interested, take your laptop with your flutter project and we can sit together and look into your project. 😊We created a form where people can sign up.
https://quickbirdstudios.com/appadviceIf you don't live nearby you can just drop me a message with your repository and a few points where you want to have feedback (e.g. network layer, state management, tests, UI/Widgets)
October 16, 2019 at 02:44PM by julianlenz
https://ift.tt/2ppJOyq
Quickbirdstudios
App Advice | QuickBird Studios
You build an App (in your company or free time) and want a second opinion on e.g.
the application architecture, technologies used, code style or anything else?
the application architecture, technologies used, code style or anything else?
New post on /r/flutterdev subreddit:
90Hz refresh rate support
There are android phones like OnePlus7 which have 90Hz screens. Today Google revealed Pixel 4 which has a 90Hz screen as well. Also afaik iPad Pro has a 120Hz screen.Do Flutter support these screens to their full potential? Or does the Skia engine cap the refresh rate at 60Hz? Or is there something we need to set in order to allow support for higher refresh rates?
October 16, 2019 at 03:29PM by aytunch
https://ift.tt/2ITqBfo
90Hz refresh rate support
There are android phones like OnePlus7 which have 90Hz screens. Today Google revealed Pixel 4 which has a 90Hz screen as well. Also afaik iPad Pro has a 120Hz screen.Do Flutter support these screens to their full potential? Or does the Skia engine cap the refresh rate at 60Hz? Or is there something we need to set in order to allow support for higher refresh rates?
October 16, 2019 at 03:29PM by aytunch
https://ift.tt/2ITqBfo
reddit
90Hz refresh rate support
There are android phones like OnePlus7 which have 90Hz screens. Today Google revealed Pixel 4 which has a 90Hz screen as well. Also afaik iPad Pro...
New post on /r/flutterdev subreddit:
#15 ListTile Flutter Widget
https://youtu.be/EFVrZKxtohw
October 16, 2019 at 04:58PM by systechdevelopers
https://ift.tt/33CsaX3
#15 ListTile Flutter Widget
https://youtu.be/EFVrZKxtohw
October 16, 2019 at 04:58PM by systechdevelopers
https://ift.tt/33CsaX3
YouTube
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
New post on Flutter Dev Google group:
Upgrade to 1.10.7 TextInput error.
Flutter clean and Flutter run fixes it sort of…. It works but debugging isn’t there when I do run…. When I Start with debugging it errors again… Any ideas what this is? ERROR - MissingPluginException(No implementation found for method TextInput.setEditibleSizeandTransform on channel flutter/te
October 16, 2019 at 07:20PM by Sam Cromer
https://ift.tt/33zUxoJ
Upgrade to 1.10.7 TextInput error.
Flutter clean and Flutter run fixes it sort of…. It works but debugging isn’t there when I do run…. When I Start with debugging it errors again… Any ideas what this is? ERROR - MissingPluginException(No implementation found for method TextInput.setEditibleSizeandTransform on channel flutter/te
October 16, 2019 at 07:20PM by Sam Cromer
https://ift.tt/33zUxoJ
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:
Got a live Flutter app? Are you an indie-developer, small startup or larger company?
I'm just curious to know what kind of developers and companies are using Flutter :)Myself: Startup with a team of 8. App has been live since May 2019 (moved from native).
October 16, 2019 at 07:58PM by loveyoghurt
https://ift.tt/2VWMMH7
Got a live Flutter app? Are you an indie-developer, small startup or larger company?
I'm just curious to know what kind of developers and companies are using Flutter :)Myself: Startup with a team of 8. App has been live since May 2019 (moved from native).
October 16, 2019 at 07:58PM by loveyoghurt
https://ift.tt/2VWMMH7
reddit
Got a live Flutter app? Are you an indie-developer, small startup...
I'm just curious to know what kind of developers and companies are using Flutter :) Myself: Startup with a team of 8. App has been live since May...
New post on /r/flutterdev subreddit:
Do Android/iOS widgets work on Flutter web?
I am just starting out on Flutter Web and was trying to get one widget to work for a while until I ran across a comment asking if the widget supported Flutter web.My assumption was that they should work in all formats (that's the point is it not?).Do widgets need to be created specifically to work in Flutter web?
October 16, 2019 at 07:43PM by Elwar
https://ift.tt/2VKj9IQ
Do Android/iOS widgets work on Flutter web?
I am just starting out on Flutter Web and was trying to get one widget to work for a while until I ran across a comment asking if the widget supported Flutter web.My assumption was that they should work in all formats (that's the point is it not?).Do widgets need to be created specifically to work in Flutter web?
October 16, 2019 at 07:43PM by Elwar
https://ift.tt/2VKj9IQ
reddit
Do Android/iOS widgets work on Flutter web?
I am just starting out on Flutter Web and was trying to get one widget to work for a while until I ran across a comment asking if the widget...
New post on Flutter Dev Google group:
Adding Banner Ads between Grid Items
Dear Flutter Developers, I'm new flutter developer. I want to add Google Banner ads between Grid Items like the following attachment. plz give me some idea to get.
October 16, 2019 at 09:15PM by Phyoe Ko Ko Lwin
https://ift.tt/31lUOdi
Adding Banner Ads between Grid Items
Dear Flutter Developers, I'm new flutter developer. I want to add Google Banner ads between Grid Items like the following attachment. plz give me some idea to get.
October 16, 2019 at 09:15PM by Phyoe Ko Ko Lwin
https://ift.tt/31lUOdi
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 Airplane ticket reservations App UI 01
https://youtu.be/4AtX6Fw903s
October 16, 2019 at 09:22PM by genivaldo-reis
https://ift.tt/2MZlsnx
Flutter Airplane ticket reservations App UI 01
https://youtu.be/4AtX6Fw903s
October 16, 2019 at 09:22PM by genivaldo-reis
https://ift.tt/2MZlsnx
YouTube
Flutter Airplane ticket reservations App UI 01
✅SE INSCREVA NO YOUTUBE
✅SUBSCRIBE TO CHANNEL
Source code:https://github.com/grcodereis/airplaneticket
📕 Alguns livros que vão te ajudar na escrita de um código limpo, escalável e otimizado:
📕🚀CLEAR CODE: para fazer códigos limpos
Mesmo um código ruim…
✅SUBSCRIBE TO CHANNEL
Source code:https://github.com/grcodereis/airplaneticket
📕 Alguns livros que vão te ajudar na escrita de um código limpo, escalável e otimizado:
📕🚀CLEAR CODE: para fazer códigos limpos
Mesmo um código ruim…
New post on /r/flutterdev subreddit:
Flutter coffee shopping cart App (1/2)
https://youtu.be/4wsEsPEEy7Y
October 16, 2019 at 09:03PM by genivaldo-reis
https://ift.tt/31jeKh5
Flutter coffee shopping cart App (1/2)
https://youtu.be/4wsEsPEEy7Y
October 16, 2019 at 09:03PM by genivaldo-reis
https://ift.tt/31jeKh5
YouTube
Flutter coffee shopping cart App (1/2)
#Flutter #Dar t#App #UXDesing
✅SE INSCREVA NO YOUTUBE
✅SUBSCRIBE TO CHANNEL
📕 Alguns livros que vão te ajudar na escrita de um código limpo, escalável e otimizado:
📕🚀CLEAR CODE: para fazer códigos limpos
Mesmo um código ruim pode funcionar. Mas se ele…
✅SE INSCREVA NO YOUTUBE
✅SUBSCRIBE TO CHANNEL
📕 Alguns livros que vão te ajudar na escrita de um código limpo, escalável e otimizado:
📕🚀CLEAR CODE: para fazer códigos limpos
Mesmo um código ruim pode funcionar. Mas se ele…
New post on /r/flutterdev subreddit:
Flutter UI - Cookie Store - Speed Code
https://youtu.be/5Cq92yQa3Mo
October 16, 2019 at 10:00PM by rajayogan27
https://ift.tt/2MKzEAB
Flutter UI - Cookie Store - Speed Code
https://youtu.be/5Cq92yQa3Mo
October 16, 2019 at 10:00PM by rajayogan27
https://ift.tt/2MKzEAB
YouTube
Flutter UI - Cookie Store - Speed Code
Need an app ? - https://rajayogan.me
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw-EMsLf8TmsYhKOCx2ALZiKi
Design credit - https://dribbble.com/shots/6196911-Cookies-app…
Follow me on twitter - https://twitter.com/rajayogan14k
Other flutter videos - https://www.youtube.com/playlist?list=PLgGjX33Qsw-EMsLf8TmsYhKOCx2ALZiKi
Design credit - https://dribbble.com/shots/6196911-Cookies-app…
New post on Flutter Dev Google group:
TextFormField without underscore when typing
Hi, I am new to Flutter and was hoping to find out how to disable the underscore when typing text using a TextFormField: [image: TextFormField-underscore.jpg] Here is the widget that I use (basically a TextFormField with some default properties set): @override Widget build(BuildContext
October 16, 2019 at 10:21PM by Laban
https://ift.tt/2Bli54w
TextFormField without underscore when typing
Hi, I am new to Flutter and was hoping to find out how to disable the underscore when typing text using a TextFormField: [image: TextFormField-underscore.jpg] Here is the widget that I use (basically a TextFormField with some default properties set): @override Widget build(BuildContext
October 16, 2019 at 10:21PM by Laban
https://ift.tt/2Bli54w
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.