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

Where to start, building a parental control app for iOS / Android
Hi all,I'm fairly new to coding and flutter so I thought I'd seek some advice here. I'm trying to build an app as a project for myself, that allows parents to restrict their children's usage of certain other apps. What I don't have the slightest clue about is, what do you use to implement the logic for restricting/blocking access to other apps in iOS and Android. Where do you access the data for a phone's app usage, and then how do you go about controlling them? is this something that can be done with Flutter?

January 04, 2022 at 10:33PM by Tengu3
https://ift.tt/3pQgP3z
New post on /r/flutterdev subreddit:

How to integrate oauth2.0 using oauth_dio package?
I am getting 200 in postman but not able to get access token using this package.

January 05, 2022 at 06:26AM by mryoloo
https://ift.tt/3pUeVii
New post on /r/flutterdev subreddit:

A website for interesting Flutter challenges
Personally, I prefer learning by actually codding rather than just reading/watching tutorials. That's not to say that I don't like tutorials. In fact, I think they are vital in the first phase of learning when everything is new, and you have no idea what to do and how to start. But once I get familiar enough with the topic, I enjoy tackling some interesting challenges that are balanced for my level. And usually, once I complete a challenge, I keep fiddling with the result and see what else is there to learn. Challenges are a great way to learn, as long as they are short enough, lead to something interesting (not to another to-do list app), and are not too hard.So, I made this website to publish Flutter challenges and put it on GitHub. I already posted the first challenge, and I'll publish the solution in a couple of days to give those who want to try it by themselves time to do it without the temptation of an available solution.What do you think about this idea? Will you be interested in this kind of challenges? Or would you like to contribute with your own challenges?The site is based on Jekyll, so the challenges and all other pages are more or less simple .md files on GitHub. Thus, in theory, contributing should be a simple matter of submitting pull requests.https://rggt.github.io/flutter-challenges/

January 05, 2022 at 11:26AM by __RGgt__
https://ift.tt/3pXCmaO
New post on /r/flutterdev subreddit:

Appwrite 0.12 - A major milestone for the open source Firebase Alternative
Hey, Appwrite maintainer here 👋After months of hard work and contributions from the open source community, Appwrite 0.12 has just been released with the biggest performance improvements till date.If you haven't heard already, Appwrite is an open source end-to-end BaaS that helps you build your Web, Flutter, iOS and Android apps much faster with a focus on simplicity, developer experience, privacy and security that you can self-host with just a single command.We'd love to get your feedback as we move on to v1.0 of Appwrite in the coming weeks. Community feedback has been one of the major driving forces for where the project is today.Here’s everything that’s new in Appwrite 0.12Database overhaul - a new and improved database API focussed on performance and support for multiple databases under the hood - MariaDB, MySQL, MongoDB ( soon ...) and more.Dynamic pagination strategies - Efficient querying through millions of records using a combination of limit-offset and cursor paginationSimple Database permissions - choose between collection-level and document-level permissionsQuery API v2 - support for more powerful database queriesNew Usage Charts - Increased visibility on your project with lot more graphs and metricsCustom IDs - Human friendly IDs for your collections, documents, users, projects etc.Service toggles - disable services you don’t need and secure your APIs even furtherLogging that just works - Error logging and monitoring made easy with 3 new open source providers - Sentry, AppSignal & RaygunNot to mention, we're one step closer to becoming a complete Firebase Alternative​Check out everything we shipped this time around 👇https://github.com/appwrite/appwrite/releases/latest

January 05, 2022 at 02:19PM by thecouchdev
https://ift.tt/3JUbTmq
New post on /r/flutterdev subreddit:

Mixing visual and traditional coding is 🔥 as hell
https://twitter.com/tetabuilder/status/1478746110797692928?s=21

January 05, 2022 at 04:32PM by OndaTeta
https://ift.tt/334irO8
New post on /r/flutterdev subreddit:

5 Things John Learned Fighting Hackers of His App — A must-read for PM’s and CISO’s
/r/ciso/comments/rcdz68/5_things_john_learned_fighting_hackers_of_his_app/

January 05, 2022 at 04:23PM by sergeychuk
https://ift.tt/3qJVdVG
New post on /r/flutterdev subreddit:

Thinking of making a build service to generate mobile apps - any interest?
I'm thinking of making a build service which would make Android and iOS native apps from Flutter projects.Sure, you can do this yourself if you have Android Studio, as well as a Mac with Xcode. But not everyone does, and it can be a pain installing the build stack and keeping it up to date.Is there any interest in a service which would let you upload your project, then download mobile executables? What would make it more interesting?

January 05, 2022 at 07:21PM by ghenne
https://ift.tt/34ezFce
New post on /r/flutterdev subreddit:

Check out my Flutter alternative navigator package! See `pub.dev` page for details. Feedback (positive or otherwise) welcome.
https://ift.tt/3DY2Duk

January 05, 2022 at 10:18PM by caseycrogers
https://ift.tt/3t1mHsX
New post on /r/flutterdev subreddit:

Flutter: types of widgets
https://ift.tt/34ffoTU

January 05, 2022 at 11:24PM by Happycodeine
https://ift.tt/3pWuk1C
New post on /r/flutterdev subreddit:

Relative vs package imports in Flutter and Dart
https://ift.tt/335MjKj

January 06, 2022 at 06:41AM by Suragch
https://ift.tt/3HD4ZzV
New post on /r/flutterdev subreddit:

Anybody using Apple M1 chip?
My company bought me a New M1 MAX MBP. This is super cooooool.One annoying thing is that when i run a flutter app in simulator.Everything is running in native. EXCEPT dart process :(Any good news to change this to apple native?​https://i.imgur.com/burFmpJ.png

January 06, 2022 at 11:44AM by gigas02
https://ift.tt/3EUvI9v
New post on /r/flutterdev subreddit:

First app built with flutter
https://ift.tt/3G0HLn2

January 06, 2022 at 04:58PM by DesignerWonder
https://ift.tt/337kXn5
New post on /r/flutterdev subreddit:

Thought About flutterfire_ui package.
Guys recently find out about this flutterfire_ui package which was officially built by the firebase team which looks quite amazing. where you can perform the whole sign-in process in a single line of code.GoogleSignInButton(clientId: Config.clientID)So what does your thought about that just want to know since currently, I was working on my new flutter project where I strictly tried to use clean architecture and bloc pattern so now I am just confused should I use this its make developments so much easy or use the normal method?What you do.

January 06, 2022 at 07:58PM by Prashant_4200
https://ift.tt/3qNEbGc