Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

firebase_messaging 9.0.1: error with Firebase.initializeApp()
Hi guys, according to https://ift.tt/32eDXuS, with 9.0.1, there is no extra step to integrate it in flutter, it didn't mention to call Firebase.initializeApp(). but however, when I try to launch the app, it gives the error: [ERROR:flutter/lib/ui/ui_dart_state.cc(186)]

March 25, 2021 at 09:02AM by Siyi Wang
https://ift.tt/3smKHDE
New post on /r/flutterdev subreddit:

Flutter + Riverpod World Clock Application with Source Code
Open source Flutter + Riverpod sample application, A world clock using http://worldtimeapi.org/ open API.Source: https://github.com/lohanidamodar/flutter_worldtime

March 25, 2021 at 09:12AM by lohanidamodar
https://ift.tt/2QxrIIh
New post on /r/flutterdev subreddit:

Run R Code in Flutter?
Hello everyone,Im just curious about if in a Flutter app you can run some R algorithm or code, coz I tried with C and C++ and was no problem at all, but im not sure how to do it with R.Any suggestion?Thanks in advance

March 25, 2021 at 09:35AM by Kchopo
https://ift.tt/3sl2laP
New post on /r/flutterdev subreddit:

Using Shared preference in flutter how to retrieve data and save data in shared preference .
https://ift.tt/31gNcLF

March 25, 2021 at 11:41AM by Dream10candev
https://ift.tt/2P9vNC6
New post on /r/flutterdev subreddit:

Conversation with my girlfriend about Account kit integration in the Flutter.
https://ift.tt/3aAaxfA

March 25, 2021 at 01:37PM by ooWYXNoo
https://ift.tt/2NXnby8
New post on /r/flutterdev subreddit:

Suggestions for a new Flutter Package
I have been developing applications using Flutter for quite some time now (I think one and a half years). I wanted to ask the fellow developers here that "one Flutter package" (which is currently unavailable) which could help you code better (or save you from the drudgery), what would it be? (With a short description).If you really have something in mind that could help you and other Flutter Developers, please write to me at [sam.jain2122@gmaill.com](mailto:sam.jain2122@gmaill.com).

March 25, 2021 at 07:54PM by ProfessionalEar2404
https://ift.tt/3tWV3uq
New tweet from FlutterDev:

💙 Develop multi-platform apps with @flutterdev!

Learn how Flutter can support building high quality experiences for a variety of screens including foldables, web, mobile, and in-vehicle experiences ↓ https://t.co/F6FOUepxUg— Google Play Apps & Games (@GooglePlayDev) March 25, 2021

March 25, 2021 at 10:00PM
http://twitter.com/FlutterDev/status/1375190908967153670
New post on /r/flutterdev subreddit:

New TextSpan hover callbacks in Flutter
Since yesterday, it became a little bit easier to create "real" hyperlinks with hover-effect because of two new callbacks that fire when the mouse is hovering over a TextSpan.Here is an example:
class HyperText extends StatefulWidget { @override _HyperTextState createState() => _HyperTextState(); } class _HyperTextState extends State<HyperText> { late final _r = TapGestureRecognizer()..onTap = _onTap; var _hover = false; @override void dispose() { _r.dispose(); super.dispose(); } void _onTap() => print('Link was clicked'); @override Widget build(BuildContext context) { return Text.rich( TextSpan( children: [ TextSpan( text: 'This is a ', mouseCursor: SystemMouseCursors.text, ), TextSpan( text: 'Link', style: TextStyle( decoration: TextDecoration.underline, color: _hover ? Colors.blue : null, ), mouseCursor: SystemMouseCursors.click, onEnter: (_) => setState(() => _hover = true), onExit: (_) => setState(() => _hover = false), recognizer: _r), TextSpan( text: '!', mouseCursor: SystemMouseCursors.text, ), ], ), ); } } 
Unfortunately, you cannot simply set the mouseCursor for the container TextSpan. And adding a gesture recognizer is as chatty as before, requiring a stateful widget. Still, a nice improvement and you don't have to use your own render object to do the hit testing yourself.

March 26, 2021 at 09:02AM by eibaan
https://ift.tt/2PseNHa
New post on Flutter Dev Google group:

Error when i try to implement scroll inside my registration page
The following assertion was thrown while applying parent data.: I/flutter (21259): Incorrect use of ParentDataWidget. I/flutter (21259): The ParentDataWidget Positioned(bottom: 10.0) wants to apply ParentData of type StackParentData to a I/flutter (21259): RenderObject, which has been set up to

March 26, 2021 at 11:49AM by malik gee
https://ift.tt/2NV5lvD
New post on /r/flutterdev subreddit:

Trigger browser reload/refresh onClick?
Is there a way to trigger browser or app reload onClick? Not a widget rebuild, a whole app rebuild/reload?

March 26, 2021 at 01:57PM by reddit04029
https://ift.tt/3srEiHl
New post on /r/flutterdev subreddit:

Is there a developers who knows about termal printers?
Hello i have android device that have built-in terminal printer, as i searched i only able to print via Bluetooth but there is company app in system that able to print without Bluetooth even if Bluetooth is closed,so how it works?

March 26, 2021 at 01:37PM by diyar_gulli
https://ift.tt/3srlt78
New post on /r/flutterdev subreddit:

Cool package for Schedule/Time planner Flutter Apps
Hey I found this new cool package for Time planner/Schedule in Flutter Applicationshttps://github.com/Jamalianpour/time_planner

March 26, 2021 at 03:16PM by lohanidamodar
https://ift.tt/39iQZfR
New post on /r/flutterdev subreddit:

App Feedback Thread - March 26, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

March 26, 2021 at 03:00PM by AutoModerator
https://ift.tt/39jy30B
New post on /r/flutterdev subreddit:

Why there is no reliable rich text editor for flutter?
In my app I need rich text editor. I can't found any reliable solution. Sure, I tried Zefyr but after updating flutter I got a lot of errors so it won't work and the repo is inactive for a long time. I also tried some others like flutter_quill or flutter_html_editor but I can't make it work with any of them.So what is your advice? Do you have some experience with rich text editor for flutter? 🤔

March 26, 2021 at 04:04PM by radim11
https://ift.tt/3spSX5D
New post on /r/flutterdev subreddit:

Firebase & Flutter: How to store and work with detailed data (Best Practises and ideas welcome!)
Hello,im wondering if somebody has made any good experiences yet. Imagine we have a movie app and we want to show leaderboards of currently most favored movies and more. I think we agree this is totally fine with a nosql database.On top of that we want to also save informations about the user if he is watching a movie, did he like the movie or put it on his watchlist, did he watch the movie until the end if he did or where did he stop if not, I think you're getting the idea of it.I'm using firebase and I'm wondering if we can store this kind of informations in a clever way in firebase (1 sec writing limitation / getting data with simple queries)Im interested in your experience and opinions.

March 26, 2021 at 03:25PM by md186
https://ift.tt/2P265Qg