Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
GGroup: Multiple TabController
Hi, I want two *TabController* in one page. how it is possible? Can any one please suggest me.

Submitted September 21, 2018 at 05:39AM by Sanjay Tejani
via Flutter Dev https://ift.tt/2po2WcV
"Google has announced the final pre-release version of its Flutter cross-platform mobile app toolkit. This release addresses a key developer concern: The lack of native UI components on iOS." #mobileapps #cupertino #iosdev @thurrott https://t.co/n7f2xzk5sJ— Flutter (@flutterio) September 21, 2018

September 21, 2018 at 08:00AM
via Twitter https://twitter.com/flutterio
GGroup: const constructors and encapsulation don't go together in Dart
I am really annoyed by the restrictions that the Dart language imposes on const constructors. Flutter makes heavy use of immutable objects. At the same time it seems impossible to make any non trivial const constructor work in Dart. A constant constructor can only be initialized with compile time

Submitted September 21, 2018 at 09:54AM by Andreas Sumerauer
via Flutter Dev https://ift.tt/2MWiZrW
GGroup: What is the actual implementation of SO_LINGER in the Dart platform?
Hi, I place an issue on Dart SDK. *My Flutter Mobile app* cannot get the socket data due to dart.io socket set option. I can get my data in java when I set my java socket setSoLinger option. Question: What is the actual implementation of SO_LINGER in the Dart platform? https://github.com/dart

Submitted September 21, 2018 at 11:41AM by Niyazi Toros
via Flutter Dev https://ift.tt/2PZ49CX
GGroup: How to migrate my flutter app with the new version of flutter?
*How to migrate my flutter app with the new version of flutter?*

Submitted September 21, 2018 at 12:53PM by Ahmed Meklad
via Flutter Dev https://ift.tt/2OIXHzy
Reddit: Timed background updates on Flutter?
I need to run a task to update pull down and update some data files (podcast info).I'd like to set a timer so the task kicks off about 4 AM and then exits when its complete. Is this possible in Flutter?I know how to do it in Android directly, but not Flutter.

Submitted September 21, 2018 at 01:56PM by NeilPork
via reddit https://ift.tt/2OHn84B
Reddit: auto_size_text | Flutter widget that automatically resizes text to fit perfectly within its bounds.
https://ift.tt/2QJQNM1

Submitted September 21, 2018 at 07:18PM by Purple_Pizzazz
via reddit https://ift.tt/2pqqFsY
GGroup: Install and launch error: flutter/examples/catalog on an iPhone 4S
Hi all, Anyone know what is wrong with flutter/examples/catalog example? (hello_world works) Install and launch error catalog example: Installing and launching... You've implemented -[ application:performFetchWithCompletionHa

Submitted September 21, 2018 at 10:18PM by hoek
via Flutter Dev https://ift.tt/2O2sz0M
Learn about the exciting concept of the gesture arena! When a user initiates a gesture that could be many different things (long press, scroll, pinch), these contestants enter an arena. Only one gesture leaves victorious. #FlutterFriday

Learn more ↓ https://t.co/e35FWA4BeK— Flutter (@flutterio) September 21, 2018

September 21, 2018 at 11:07PM
via Twitter https://twitter.com/flutterio
GGroup: Foreground/background location tracking in flutter
Hello, I would like to implement foreground/background location tracking in flutter. Can anyone help me for the same, please. Current progress: I user geolocation package in which I can able to get a location on the single screen and also can push it to server. Required: I need the same

Submitted September 22, 2018 at 06:40AM by Prashant Fepale
via Flutter Dev https://ift.tt/2MRkTda
GGroup: different setSystemUIOverlayStyle for routes
I have an app, where I need to change in one screen the text color of the status bar. The scene is opened with Navigator. What would be the correct solution for changing the text color?

Submitted September 22, 2018 at 08:31AM by mars3142
via Flutter Dev https://ift.tt/2I5k7sh
GGroup: Search Engine Input Text
Dear dart flutter expert, i want create search engine inside chat app, like below, but I am confused about where to start, is there any suggestion of what I have to do first and so on. [image: WhatsApp Image 2018-09-22 at 6.08.51 PM.jpeg]

Submitted September 22, 2018 at 01:22PM by Denis Ramdan
via Flutter Dev https://ift.tt/2I6jNcI
GGroup: flutter connect to SQL server directly
Hi guys, Is there a way to connect SQL server like using the JDBC connection string. right now I am working on a project where the app needs to connect the SQL server directly, we do not want to provide a web API layer to flutter. Can we go this way to implement the access to SQL server? Could

Submitted September 22, 2018 at 03:04PM by charles...@gmail.com
via Flutter Dev https://ift.tt/2OHa0fG
GGroup: TabController Current Index
Hi All, Any one know how to get current index of TabController if I am on second tab then I want index 2

Submitted September 22, 2018 at 08:25PM by Sanjay Tejani
via Flutter Dev https://ift.tt/2Dn9tye
GGroup: Animation
Hi devs, Very simple question... I'm unable understand what Animation parameter type mean's?? Thanks for any explanations.

Submitted September 22, 2018 at 08:27PM by Mohammed Umar ibn Shafee
via Flutter Dev https://ift.tt/2Nz93cY
GGroup: Theme.of(context).copywith
Hello dev's.. I'm a bit new to flutter, can someone explain me why we should consider 'Theme.of(context).copywith()' instead of directly using 'ThemeData()' Code: bottomNavgationBar: Theme( data: Theme.of(context).copywith ( canvasColor: .......,)) Insted: bottomNavgationBar:

Submitted September 23, 2018 at 12:32AM by Mohammed Umar ibn Shafee
via Flutter Dev https://ift.tt/2DpBYeL
Reddit: OAuth on Flutter really sucks. What's the easiest way?
I've got this working, but it's really ugly and would like to know if there's a better, smooth way to do it. I've done OAuth in web development multiple times, but I got confused on app development.Firstly, it's weird that I'm setting up a localhost server on the user's device. This is to receive the tokens given back from the third-party website that authenticates the user. Some people mentioned deep linking would solve this server problem, but deep linking is barely supported in flutter and code has to be written for iOS and Android separately.Secondly, I have to open a web browser for the user so they can actually visit the third-party website. Once they authenticate and I receive the tokens, I can't close the browser:If I open the URL in a web browser, then closing it (with JavaScript: `window.close()`) would only close one tab and the web browser remains running. I can't send the user back to my app (or can I?).If I use a web view, I can't close it. I tried, but I can't. Web view doesn't run Javascript, which I use to close the window... or I think it works on Android but not iOS. I forgot but it's getting complicated.Is OAuth, which is a major feature, missing on flutter? Am I missing something?

Submitted September 23, 2018 at 05:38AM by AskYous
via reddit https://ift.tt/2QPpBvc