Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

Flutter video call, audio call and live streaming.
Hello to all the Developers,I have a question and I really think this is the best place to ask. That said, any help or knowledge will be helpful.TO THE POINT.I am working on my app and wanted to add a video/audio call or even a live streaming feature/s like Instagram to it, but unfortunately, all the posts and ideas I found on the WWW (unbelievable but true) is about third parties like Agora, Sinch, etc...My goal is to create something similar to IG live streaming for users for free, not to charge for that service or anything of that kind of direction.But instead, all the possibilities I find are WebRTC, which is not fully customizable (a lot of unnecessary buttons) and that applies to its "brother" (JITSI).Can anyone (Savior) come and save me pleaseeeee 😔😔?Thanks in advance.

March 25, 2021 at 07:09AM by flutterlova
https://ift.tt/2NPckGi
New post on /r/flutterdev subreddit:

An Open Source Android Launcher App example with Flutter + YouTube tutorial
Hey, here I have an Android Launcher App with tutorial made with Flutter. It's simple, but knowing Flutter you can add a loads of functionalities to it. Happy FlutteringTutorial: https://www.youtube.com/watch?v=5QJU3QIBLIw
Source: https://github.com/lohanidamodar/fl_live_launcher

March 25, 2021 at 07:54AM by lohanidamodar
https://ift.tt/3d5pUhp
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