New post on /r/flutterdev subreddit:
New Video and Beta Testing for Corona Spectator - A Flutter COVID-19 Stats, News and Aid app.
Hey everyone,I created a video for corona spectator for those who want a better representation of the app. I also entered it into the Congressional App Challenge so wish me (or the app) luck! GitHub: https://github.com/31Carlton7/corona_spectator. If you want to use the app with test flight or google play beta, you can use these links below.Test Flight: https://testflight.apple.com/join/dQTw4Q1YGoogle Play Beta: https://play.google.com/apps/testing/com.coronaspectator.appPSA: I cannot upload the apps to the app store or google play store due to their rules related to COVID-19 Apps :(
October 30, 2021 at 01:45AM by 31Carlton7
https://ift.tt/3BnhvA9
New Video and Beta Testing for Corona Spectator - A Flutter COVID-19 Stats, News and Aid app.
Hey everyone,I created a video for corona spectator for those who want a better representation of the app. I also entered it into the Congressional App Challenge so wish me (or the app) luck! GitHub: https://github.com/31Carlton7/corona_spectator. If you want to use the app with test flight or google play beta, you can use these links below.Test Flight: https://testflight.apple.com/join/dQTw4Q1YGoogle Play Beta: https://play.google.com/apps/testing/com.coronaspectator.appPSA: I cannot upload the apps to the app store or google play store due to their rules related to COVID-19 Apps :(
October 30, 2021 at 01:45AM by 31Carlton7
https://ift.tt/3BnhvA9
GitHub
GitHub - 31Carlton7/corona_spectator: A coronavirus statistics, news and aid app to help navigate your way through the pandemic.…
A coronavirus statistics, news and aid app to help navigate your way through the pandemic. 🚀 - 31Carlton7/corona_spectator
New post on /r/flutterdev subreddit:
List of Top 10 Flutter App Development Tools in 2021-22
https://ift.tt/3mud1TO
October 30, 2021 at 05:58AM by ITWorldSolution
https://ift.tt/3pSE5hQ
List of Top 10 Flutter App Development Tools in 2021-22
https://ift.tt/3mud1TO
October 30, 2021 at 05:58AM by ITWorldSolution
https://ift.tt/3pSE5hQ
IWSS
List of Top 10 Flutter App Development Tools in 2022
Are you looking for flutter app development Tools to develop a flutter app? Check Here List of Top 10 Flutter App Development Tools
New post on /r/flutterdev subreddit:
Are global data structures viable in Flutter?
In the past I didn't care too much and most of my production apps mixed logic and UI wherever convenient all over the place. In a recent company app however there was a need to pass and process lots of api-fetched data in various unrelated places and the above approach started to result in a big ball of spaghetti and boilerplate, which forced me to finally give state management packages a try - Riverpod proved pretty useful but ultimately I decided to simplify things and came up with the following approach:The app has a global class (data structure), and the entire logic lives within this class. Basically the app works fully without any UI. The whole UI is then build separately and doesn't "do" anything, it just reflects the global class; calls some callbacks and interfaces with the data structure via getters and setters. Anything in the UI that needs to be updated upon a state change adds its SetState callback to a list in the logic class so that it can be updated with something like a NotifyListeners function.This works pretty great, but I remember a comment somewhere where someone said a global data structure is against how Flutter is supposed to be used. I'm also not sure how it sits against object oriented programming principles. Also if it has issues if the team grows and anything "global" becomes and issue?What are your thoughts? How do you structure your big apps so that they follow good practices and are scalability proof?
October 30, 2021 at 09:49AM by HeftyImplement
https://ift.tt/3pOdvGv
Are global data structures viable in Flutter?
In the past I didn't care too much and most of my production apps mixed logic and UI wherever convenient all over the place. In a recent company app however there was a need to pass and process lots of api-fetched data in various unrelated places and the above approach started to result in a big ball of spaghetti and boilerplate, which forced me to finally give state management packages a try - Riverpod proved pretty useful but ultimately I decided to simplify things and came up with the following approach:The app has a global class (data structure), and the entire logic lives within this class. Basically the app works fully without any UI. The whole UI is then build separately and doesn't "do" anything, it just reflects the global class; calls some callbacks and interfaces with the data structure via getters and setters. Anything in the UI that needs to be updated upon a state change adds its SetState callback to a list in the logic class so that it can be updated with something like a NotifyListeners function.This works pretty great, but I remember a comment somewhere where someone said a global data structure is against how Flutter is supposed to be used. I'm also not sure how it sits against object oriented programming principles. Also if it has issues if the team grows and anything "global" becomes and issue?What are your thoughts? How do you structure your big apps so that they follow good practices and are scalability proof?
October 30, 2021 at 09:49AM by HeftyImplement
https://ift.tt/3pOdvGv
reddit
Are global data structures viable in Flutter?
In the past I didn't care too much and most of my production apps mixed logic and UI wherever convenient all over the place. In a recent company...
New post on /r/flutterdev subreddit:
Has anyone moved from Swift/SwiftUI to Dart/Flutter?
I’ve started learning dart recently to then go on to learning flutter and building my first app.However I also get drawn in by the idea of working natively within Swift and SwiftUI however I feel like it would have a steeper learning curve plus there’s the obvious of it not being cross platform.I’m wondering if any Swift devs have made the switch to Dart/Flutter (or didn’t end up making the switch) and what there thoughts are?
October 30, 2021 at 10:57AM by dualnote
https://ift.tt/3CtEfQ5
Has anyone moved from Swift/SwiftUI to Dart/Flutter?
I’ve started learning dart recently to then go on to learning flutter and building my first app.However I also get drawn in by the idea of working natively within Swift and SwiftUI however I feel like it would have a steeper learning curve plus there’s the obvious of it not being cross platform.I’m wondering if any Swift devs have made the switch to Dart/Flutter (or didn’t end up making the switch) and what there thoughts are?
October 30, 2021 at 10:57AM by dualnote
https://ift.tt/3CtEfQ5
reddit
Has anyone moved from Swift/SwiftUI to Dart/Flutter?
I’ve started learning dart recently to then go on to learning flutter and building my first app. However I also get drawn in by the idea of...
New post on /r/flutterdev subreddit:
How safe is Firebase Email/Password Registration & Sign-in?
Firebase gives developers an easy way to set up an email-password authentication.The functionality of Firebase is so nice that it even sends a verification email to the provided address and allows us the check whether the user have passed verification.But how secure is such authentication method?What I mean is when users choose the Google Sign In, they use their Google account, and I think it's pretty secure for my app because usually Google accounts are also verified by phone numbers.
It's also not so easy to make a bot-farm with Google Accounts as it is with random emails (someone can easily set up their own email service on their server and that's it).So... How secure is the Firebase email-password sign in?
Or maybe I am just overthinking it and that's just how things are - email-password sign-ins are not secure by their nature and I just have to live with it?
October 30, 2021 at 11:39AM by submergedmole
https://ift.tt/3pLGriy
How safe is Firebase Email/Password Registration & Sign-in?
Firebase gives developers an easy way to set up an email-password authentication.The functionality of Firebase is so nice that it even sends a verification email to the provided address and allows us the check whether the user have passed verification.But how secure is such authentication method?What I mean is when users choose the Google Sign In, they use their Google account, and I think it's pretty secure for my app because usually Google accounts are also verified by phone numbers.
It's also not so easy to make a bot-farm with Google Accounts as it is with random emails (someone can easily set up their own email service on their server and that's it).So... How secure is the Firebase email-password sign in?
Or maybe I am just overthinking it and that's just how things are - email-password sign-ins are not secure by their nature and I just have to live with it?
October 30, 2021 at 11:39AM by submergedmole
https://ift.tt/3pLGriy
firebase.flutter.dev
Using Firebase Authentication | FlutterFire
This page is archived and might not reflect the latest version of the
New post on /r/flutterdev subreddit:
Why is Flutter's key not the default?
Other GUI frameworks such as MFC(Windows) and Qt Quick distinguish basic gui elements by ehandle or id. I know that id and handle correspond to the Key concept in Flutter. I guess this has to do with some optimization. I'd like to know more precisely why the key is not default in Flutter.
October 30, 2021 at 03:11PM by liaddial
https://ift.tt/3nEQiEd
Why is Flutter's key not the default?
Other GUI frameworks such as MFC(Windows) and Qt Quick distinguish basic gui elements by ehandle or id. I know that id and handle correspond to the Key concept in Flutter. I guess this has to do with some optimization. I'd like to know more precisely why the key is not default in Flutter.
October 30, 2021 at 03:11PM by liaddial
https://ift.tt/3nEQiEd
reddit
Why is Flutter's key not the default?
Other GUI frameworks such as MFC(Windows) and Qt Quick distinguish basic gui elements by HANDLE or ID. I know that HANDLE and ID correspond to the...
New post on /r/flutterdev subreddit:
Why wrap MaterialApp in a stateless widget?
I have a strong CS background and am learning Flutter. I've noticed an inconsistency among Flutter tutorials regarding how
October 30, 2021 at 04:02PM by tylercrompton
https://ift.tt/3pM3vxE
Why wrap MaterialApp in a stateless widget?
I have a strong CS background and am learning Flutter. I've noticed an inconsistency among Flutter tutorials regarding how
runApp
is invoked. Some say to execute runApp(MaterialApp(…))
. Others say to create a new class (named MyApp
for example) that extends StatelessWidget
and to execute runApp(MyApp())
. I don't see any meaningful difference between either of these approaches.Additionally, if I'm creating a Material app, then why would I extend StatelessWidget
just to return a MaterialApp
instance in the build
method when I could simply extend MaterialApp
and effectively do the runApp(MaterialApp(…))
approach instead? What's the point in wrapping it in a stateless widget?October 30, 2021 at 04:02PM by tylercrompton
https://ift.tt/3pM3vxE
reddit
Why wrap MaterialApp in a stateless widget?
I have a strong CS background and am learning Flutter. I've noticed an inconsistency among Flutter tutorials regarding how `runApp` is invoked....
New post on /r/flutterdev subreddit:
Correct method to upgrade flutter
Hi all, Junior dev here and I'm assigned with a task to upgrade an app which uses flutter version 1.22.2 to version 2. What should be the correct approach or procedures to be done? Is running "flutter upgrade" enough?
October 30, 2021 at 08:46PM by runjohanrun
https://ift.tt/3kbB9cH
Correct method to upgrade flutter
Hi all, Junior dev here and I'm assigned with a task to upgrade an app which uses flutter version 1.22.2 to version 2. What should be the correct approach or procedures to be done? Is running "flutter upgrade" enough?
October 30, 2021 at 08:46PM by runjohanrun
https://ift.tt/3kbB9cH
reddit
Correct method to upgrade flutter
Hi all, Junior dev here and I'm assigned with a task to upgrade an app which uses flutter version 1.22.2 to version 2. What should be the correct...
New post on /r/flutterdev subreddit:
What are the questions that need to be asked to a flutter developer for hiring?
We are hiring for a ecommerce app. Can you guide me?
October 30, 2021 at 09:58PM by rishhabhj
https://ift.tt/3Eq6X4U
What are the questions that need to be asked to a flutter developer for hiring?
We are hiring for a ecommerce app. Can you guide me?
October 30, 2021 at 09:58PM by rishhabhj
https://ift.tt/3Eq6X4U
reddit
What are the questions that need to be asked to a flutter...
We are hiring for a ecommerce app. Can you guide me?
New post on /r/flutterdev subreddit:
Flutter BLoC with Cubit - Part 1
https://youtu.be/0wHTltfkQTI
October 31, 2021 at 04:42AM by follow2vivek
https://ift.tt/3ExAh9W
Flutter BLoC with Cubit - Part 1
https://youtu.be/0wHTltfkQTI
October 31, 2021 at 04:42AM by follow2vivek
https://ift.tt/3ExAh9W
YouTube
Flutter bloc tutorial with cubit - Bloc Provider, Bloc Builder, and Bloc Observer
Flutter bloc tutorial with cubit - Bloc Provider, Bloc Builder, and Bloc Observer
Hello Flutter Developers,
In this Flutter bloc tutorial series we will cover the following topics.
1. What is Bloc? (Business Logic Component)
2. Cubit (Reduces the boilerplate…
Hello Flutter Developers,
In this Flutter bloc tutorial series we will cover the following topics.
1. What is Bloc? (Business Logic Component)
2. Cubit (Reduces the boilerplate…
New post on /r/flutterdev subreddit:
Observing whether the application window is active or not
I needed to determine whether my application window is active or not. At least on macOS, the selection color is different for controls in active or inactive windows and Flutter widgets don't support this out of the box. Unfortunately, the Flutter desktop support lets me down here, too.I created a ChangeNotifier so that widgets can listen to changes:
October 31, 2021 at 10:45AM by eibaan
https://ift.tt/3by8GIZ
Observing whether the application window is active or not
I needed to determine whether my application window is active or not. At least on macOS, the selection color is different for controls in active or inactive windows and Flutter widgets don't support this out of the box. Unfortunately, the Flutter desktop support lets me down here, too.I created a ChangeNotifier so that widgets can listen to changes:
class WindowActiveState extends ChangeNotifier { bool get isActive => _isActive; void set isActive(bool isActive) { if (_isActive != isActive) { _isActive = isActive; notifyListeners(); } } bool _isActive = false; }Then I created a singleton of that class:
/// Provides listenable state whether the application window is active or not. late final windowActiveState = setup(WindowActiveState());The setup method is conditionally imported based on whether this is a web application or a desktop application (I didn't care about mobile in my project).Here is my web implementation. I need to observe the focus. Unfortunately, the document object lacks the hasFocus method, it was probably forgotten.
WindowActiveState setup(WindowActiveState activeState) { window.onFocus.listen((_) => activeState.isActive = true); window.onBlur.listen((_) => activeState.isActive = false); activeState.isActive = JsObject.fromBrowserObject(document).callMethod('hasFocus') as bool; return activeState; }For the macOS implementation, I set up a MethodChannel and implemented two methods windowIsActive and setWindowIsActive. The former is called by the native part on state changes and the latter is used (like hasFocus) to read the current(ish) state.
WindowActiveState setup(WindowActiveState activeState) { final channel = MethodChannel('icnh/WindowActiveState'); channel.setMethodCallHandler((call) async { if (call.method == 'setWindowIsActive') { activeState.isActive = call.arguments as bool; } }); channel.invokeMethod<bool>('windowIsActive') .then((value) => activeState.isActive = value!); return activeState; }For the native part, I did the simplest thing possible. I didn't create a reusable plugin but just the minimum to setup the method channel, right in the awakeFromNib method of MainFlutterWindow:
... channel = FlutterMethodChannel( name: "icnh/WindowActiveState", binaryMessenger: flutterViewController.engine.binaryMessenger) channel.setMethodCallHandler { call, result in if call.method == "windowIsActive" { result(self.isKeyWindow) } else { result(FlutterMethodNotImplemented) } } ...I also made that class its own NSWindowDelegate and implemented the methods to get informed with the "key" state (as macOS calls it) changes:
func windowDidBecomeKey(_ notification: Notification) { channel.invokeMethod("setWindowIsActive", arguments: true) } func windowDidResignKey(_ notification: Notification) { channel.invokeMethod("setWindowIsActive", arguments: false) }I'm a bit worried that the self. reference inside the method handler is a memory leak but then again, Flutter unfortunately doesn't support multiple application windows and therefore, I will only ever have one window and it doesn't matter.This took me about two hours including searching for built-in solutions that didn't exist. I'm posting this here so you don't have to spend that time, too.The only problem remaining: When I change the Themes ColorScheme based on the active state, this change is animated by Flutter and that makes it even more obvious that my application is not native but a poor imitation. Damn.Full code
October 31, 2021 at 10:45AM by eibaan
https://ift.tt/3by8GIZ
Gist
Flutter: Observing whether the application window is active or not
Flutter: Observing whether the application window is active or not - MainFlutterWindow.swift
New post on /r/flutterdev subreddit:
Detect user created widgets in widget tree
Hey Hey Flutter Dev!I've been working on a problem today to detect certain widgets in the widget tree so I've been playing around with ` context.visitChildElements` and `element. visitChildren`. I can see all the widgets in the tree, but there's just too many.I looked at the way the flutter widget inspector does it and they have some internal expectations that won't exist within other users code bases. The example, I have a scaffold with a body Center and a child Material button. Passing the context to my function below prints out about 200+ widgets with those three scattered in between. I would like to only print out those three, or at least elliminate all widgets created by Flutter automatically and not created by the code the user supplied.
October 31, 2021 at 11:46AM by Filledstacks
https://ift.tt/3GvIZam
Detect user created widgets in widget tree
Hey Hey Flutter Dev!I've been working on a problem today to detect certain widgets in the widget tree so I've been playing around with ` context.visitChildElements` and `element. visitChildren`. I can see all the widgets in the tree, but there's just too many.I looked at the way the flutter widget inspector does it and they have some internal expectations that won't exist within other users code bases. The example, I have a scaffold with a body Center and a child Material button. Passing the context to my function below prints out about 200+ widgets with those three scattered in between. I would like to only print out those three, or at least elliminate all widgets created by Flutter automatically and not created by the code the user supplied.
List<WidgetInfo> getElements(BuildContext context) { var widgetsOfInterest = <WidgetInfo>[]; widgetsOfInterest.clear(); int indentation = 0; void visitor(Element element) { indentation++; Key? key = element.widget.key; String className = element.widget.runtimeType.toString(); while (element.findRenderObject() is! RenderBox) {} RenderBox box = element.findRenderObject() as RenderBox; var offset = box.getTransformTo(null).getTranslation(); final indent = ' ' * indentation; // Here I want to check if this is a widget we created and print its name and offset if (debugIsLocalCreationLocation(element)) print('$className $offset'); if ((MaterialButton).toString() == className) { widgetsOfInterest.add(WidgetInfo( indentation: indentation, size: box.size, paintBounds: box.paintBounds.shift( Offset(offset.x, offset.y), ), key: key, className: className, )); } element.visitChildren(visitor); } context.visitChildElements(visitor); return widgetsOfInterest; }If anyone have any insights or experience with the Flutter widget tree that could point me in the right direction I would appreciate that.
October 31, 2021 at 11:46AM by Filledstacks
https://ift.tt/3GvIZam
reddit
Detect user created widgets in widget tree
Hey Hey Flutter Dev! I've been working on a problem today to detect certain widgets in the widget tree so I've been playing around with \`...
New post on /r/flutterdev subreddit:
Fitness challenge app using Flutter and Appwrite
Hello All.. Sharing a fitness challenge app I created using Flutter & Appwrite. And here's the blog I wrote about it..
October 31, 2021 at 02:38PM by gireeshp
https://ift.tt/3Ex0Eg9
Fitness challenge app using Flutter and Appwrite
Hello All.. Sharing a fitness challenge app I created using Flutter & Appwrite. And here's the blog I wrote about it..
October 31, 2021 at 02:38PM by gireeshp
https://ift.tt/3Ex0Eg9
GitHub
GitHub - gireeshp/fitness_challenge: Challenge friends on fitness goals
Challenge friends on fitness goals. Contribute to gireeshp/fitness_challenge development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Farmassist—A Smart Farming Flutter App
TLDR: Here's the link for the GitHub repo: https://github.com/farmassistX/farmassistHi all, just wanted to share this, Farmassist is a smart farming app that is built with Flutter and uses Firebase as its backend. It consists of 3 main functions:Farm managementReceive IoT telemetry data (simulated using an IoT device simulator)Detect plant disease using a trained modelFYI, this is one of my Year 3 project which I completed with my friends. Also, this is my first Flutter app! I have included all the resources that I used while building this app in the project's README.I have also built a minimal IoT device simulator for the purpose of my project's demonstration. Visit https://github.com/farmassistX/farmassist-iot-device-simulator if you are interested.That's all. Thank you!
October 31, 2021 at 04:50PM by holmesqueen2020
https://ift.tt/3Cwwedl
Farmassist—A Smart Farming Flutter App
TLDR: Here's the link for the GitHub repo: https://github.com/farmassistX/farmassistHi all, just wanted to share this, Farmassist is a smart farming app that is built with Flutter and uses Firebase as its backend. It consists of 3 main functions:Farm managementReceive IoT telemetry data (simulated using an IoT device simulator)Detect plant disease using a trained modelFYI, this is one of my Year 3 project which I completed with my friends. Also, this is my first Flutter app! I have included all the resources that I used while building this app in the project's README.I have also built a minimal IoT device simulator for the purpose of my project's demonstration. Visit https://github.com/farmassistX/farmassist-iot-device-simulator if you are interested.That's all. Thank you!
October 31, 2021 at 04:50PM by holmesqueen2020
https://ift.tt/3Cwwedl
GitHub
GitHub - farmassistX/farmassist: Farmassist is a smart farming app for IoT and AI-powered plant disease detection. It is built…
Farmassist is a smart farming app for IoT and AI-powered plant disease detection. It is built with Flutter and uses Firebase as its backend. - farmassistX/farmassist
New post on /r/flutterdev subreddit:
Using RefreshIndicator with Flutter StreamBuilder / Rest api With StreamBuilder
https://ift.tt/3nJs2R9
October 31, 2021 at 07:00PM by Hosterlkr
https://ift.tt/3GDCfap
Using RefreshIndicator with Flutter StreamBuilder / Rest api With StreamBuilder
https://ift.tt/3nJs2R9
October 31, 2021 at 07:00PM by Hosterlkr
https://ift.tt/3GDCfap
Flut Dev
Using RefreshIndicator with Flutter StreamBuilder / Rest api With StreamBuilder
Hi, I am Lokesh Jangid. it's my personal blog for flutter developers.
New post on /r/flutterdev subreddit:
Allow users to choose between light mode and dark mode with Shared Preferences
https://youtu.be/0YXBYlXJVyA
October 31, 2021 at 08:57PM by Miles_Adamson
https://ift.tt/3BxSkuK
Allow users to choose between light mode and dark mode with Shared Preferences
https://youtu.be/0YXBYlXJVyA
October 31, 2021 at 08:57PM by Miles_Adamson
https://ift.tt/3BxSkuK
YouTube
Flutter Plugin: Shared Preferences - Toggle Between Light and Dark Mode
Content:
00:00 Intro
01:30 Shared Preferences Plugin
02:55 Theme Mode
03:55 Modelling Preferences
07:30 Preferences Service
09:55 Preferences Bloc
11:50 Injecting Preferences into App
14:27 Home Screen
14:58 Side Drawer
15:18 Settings Screen
17:54 Unit Tests
00:00 Intro
01:30 Shared Preferences Plugin
02:55 Theme Mode
03:55 Modelling Preferences
07:30 Preferences Service
09:55 Preferences Bloc
11:50 Injecting Preferences into App
14:27 Home Screen
14:58 Side Drawer
15:18 Settings Screen
17:54 Unit Tests
New post on /r/flutterdev subreddit:
Cool Flutter News App with complex UI using newsapi.org, Feedback Appreciated 💫
https://ift.tt/3yl7a7c
October 31, 2021 at 09:27PM by 31Carlton7
https://ift.tt/3GO013Q
Cool Flutter News App with complex UI using newsapi.org, Feedback Appreciated 💫
https://ift.tt/3yl7a7c
October 31, 2021 at 09:27PM by 31Carlton7
https://ift.tt/3GO013Q
GitHub
GitHub - 31Carlton7/flutter_news_app: Simple and modern news app that incorporates REST API (newsapi.org), all built entirely with…
Simple and modern news app that incorporates REST API (newsapi.org), all built entirely with Flutter. 🚀 - GitHub - 31Carlton7/flutter_news_app: Simple and modern news app that incorporates REST API...
New post on /r/flutterdev subreddit:
How to create a Community App like Buddyboss with Flutter?
Hey! I'm halfway done with my Flutter training and I plan on making some notes for an app idea that I want to accomplish. Unfortunately I can't seem to find any reliable documentations on community based social media apps, instead I found clones of Instagram and WhatsApp mostly which are all irrelevant.I plan on adding a:- Q&A page like Reddit with up- and downvotes- a job board- a marketplace- and a dashboard to manage the app(Basically all the things you can somehow do with Buddyboss and Wordpress)How realistic am I speaking and what are the chances to find reliable sources for these specifications?Thanks in advance! 🙏🏼
October 31, 2021 at 11:03PM by ApprehensiveGain5988
https://ift.tt/3CtiFeC
How to create a Community App like Buddyboss with Flutter?
Hey! I'm halfway done with my Flutter training and I plan on making some notes for an app idea that I want to accomplish. Unfortunately I can't seem to find any reliable documentations on community based social media apps, instead I found clones of Instagram and WhatsApp mostly which are all irrelevant.I plan on adding a:- Q&A page like Reddit with up- and downvotes- a job board- a marketplace- and a dashboard to manage the app(Basically all the things you can somehow do with Buddyboss and Wordpress)How realistic am I speaking and what are the chances to find reliable sources for these specifications?Thanks in advance! 🙏🏼
October 31, 2021 at 11:03PM by ApprehensiveGain5988
https://ift.tt/3CtiFeC
Reddit
[deleted by user] : r/FlutterDev
106K subscribers in the FlutterDev community. A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
[ Open Source ] Full flutter Telawa Quoran app
Hi there, i eant to share with you the source code of my app: Telawa Quoran Karim apphttps://github.com/IhabZaidi/FlutterTelawaQuoranApphope you like it :)
October 31, 2021 at 10:34PM by ihab07developer
https://ift.tt/3pUklKL
[ Open Source ] Full flutter Telawa Quoran app
Hi there, i eant to share with you the source code of my app: Telawa Quoran Karim apphttps://github.com/IhabZaidi/FlutterTelawaQuoranApphope you like it :)
October 31, 2021 at 10:34PM by ihab07developer
https://ift.tt/3pUklKL
GitHub
GitHub - IhabZaidi/FlutterTelawaQuoranApp: Flutter Telawa Quoran App
Flutter Telawa Quoran App. Contribute to IhabZaidi/FlutterTelawaQuoranApp development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Firebase Users
Consulta: ¿Es posible en Firebase poner una regla para que en cuanto se registre un usuario su estatus sea “inhabilitado” para posteriormente habilitarlo manualmente?Query: Is it possible in Firebase to put a rule so that as soon as a user registers their status is "disabled" to later enable it manually?
November 01, 2021 at 01:09AM by Yael_LM
https://ift.tt/317zQob
Firebase Users
Consulta: ¿Es posible en Firebase poner una regla para que en cuanto se registre un usuario su estatus sea “inhabilitado” para posteriormente habilitarlo manualmente?Query: Is it possible in Firebase to put a rule so that as soon as a user registers their status is "disabled" to later enable it manually?
November 01, 2021 at 01:09AM by Yael_LM
https://ift.tt/317zQob
reddit
Firebase Users
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
How good are the performances of your app in production?
Especially on cheap devices :)View Poll
November 01, 2021 at 05:06AM by New-Muffin-5863
https://ift.tt/3Cxesqs
How good are the performances of your app in production?
Especially on cheap devices :)View Poll
November 01, 2021 at 05:06AM by New-Muffin-5863
https://ift.tt/3Cxesqs