New post on /r/flutterdev subreddit:
The second part of 'How To Architect A Production-Level App In Flutter: Phone Number Authentication' is ready. In this part, I covered the Application and Presentation layers.
https://ift.tt/3yMITGn
September 06, 2021 at 03:58AM by erkansahnn
https://ift.tt/3thHiqU
The second part of 'How To Architect A Production-Level App In Flutter: Phone Number Authentication' is ready. In this part, I covered the Application and Presentation layers.
https://ift.tt/3yMITGn
September 06, 2021 at 03:58AM by erkansahnn
https://ift.tt/3thHiqU
New post on /r/flutterdev subreddit:
Where in the world are you developing with Flutter from?
I'll go first: Virginia, USA
September 06, 2021 at 04:06AM by 31Carlton7
https://ift.tt/2VjcHNb
Where in the world are you developing with Flutter from?
I'll go first: Virginia, USA
September 06, 2021 at 04:06AM by 31Carlton7
https://ift.tt/2VjcHNb
New post on /r/flutterdev subreddit:
Statefull Vs Stateless Widget, Know The Basic Difference Between Two
What Is Statefull Vs Stateless Widget In Flutter? Here are all details of Statefull Vs. Stateless widget when Pursuing Flutter App Development Stateful Vs Stateless Widget, Know The Basic Difference Between Two (kodytechnolab.com)
September 06, 2021 at 08:07AM by tapas_raval6303
https://ift.tt/2YpLOYV
Statefull Vs Stateless Widget, Know The Basic Difference Between Two
What Is Statefull Vs Stateless Widget In Flutter? Here are all details of Statefull Vs. Stateless widget when Pursuing Flutter App Development Stateful Vs Stateless Widget, Know The Basic Difference Between Two (kodytechnolab.com)
September 06, 2021 at 08:07AM by tapas_raval6303
https://ift.tt/2YpLOYV
Kody Technolab
Stateful vs Stateless Widget - Flutter App Development
Developing an app in Flutter and searching about different states? Learn everything about what Is Stateful Vs Stateless Widget in Flutter here
New post on /r/flutterdev subreddit:
Glassmorphism design in Flutter App
https://ift.tt/3zNS2zS
September 06, 2021 at 01:22PM by pravindia
https://ift.tt/3DLs56p
Glassmorphism design in Flutter App
https://ift.tt/3zNS2zS
September 06, 2021 at 01:22PM by pravindia
https://ift.tt/3DLs56p
Smazee
Implement glassmorphism in your flutter app
Glassmorphism is a unified name for the popular Frosted Glass design. It focuses on a light transparent and blurred effect on a container that matched the background. However, when it comes to putting code into practise, things get a little more complicated…
New post on /r/flutterdev subreddit:
Notifications (maybe local) for flutter
Hey,I've been trying out a few different ways of sending notifications but haven't been completely satisfied with any of them. The feature I want to have in my app is to send notifications X days before an event occurs. Any tips or suggestions? What do you guys use? Maybe your own server for sending notifications?Also what happens when a user changes his device? How do you transfer his notifications?Thanks in advance!
September 06, 2021 at 02:53PM by StulcyOnReddit
https://ift.tt/3E1o4Ll
Notifications (maybe local) for flutter
Hey,I've been trying out a few different ways of sending notifications but haven't been completely satisfied with any of them. The feature I want to have in my app is to send notifications X days before an event occurs. Any tips or suggestions? What do you guys use? Maybe your own server for sending notifications?Also what happens when a user changes his device? How do you transfer his notifications?Thanks in advance!
September 06, 2021 at 02:53PM by StulcyOnReddit
https://ift.tt/3E1o4Ll
reddit
Notifications (maybe local) for flutter
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Simplify test new features in Flutter app with debug_friend
https://ift.tt/2YAQqvH
September 06, 2021 at 02:14PM by frezycode
https://ift.tt/3yIhbKU
Simplify test new features in Flutter app with debug_friend
https://ift.tt/2YAQqvH
September 06, 2021 at 02:14PM by frezycode
https://ift.tt/3yIhbKU
GitHub
GitHub - Frezyx/flutter_admin: :bug: Flutter debug helper widget with common and custom actions [Work in progress]
:bug: Flutter debug helper widget with common and custom actions [Work in progress] - Frezyx/flutter_admin
New post on /r/flutterdev subreddit:
Flutter Croissants 🥐 #01
https://ift.tt/3tiNoas
September 06, 2021 at 02:13PM by g123k
https://ift.tt/3BRaMPD
Flutter Croissants 🥐 #01
https://ift.tt/3tiNoas
September 06, 2021 at 02:13PM by g123k
https://ift.tt/3BRaMPD
New post on /r/flutterdev subreddit:
Simplify test new features in Flutter app with debug_friend
When we are working on a large product, development is carried out in teams. We divide the work into sprints, weeks, functions and periods. Recently, I began to notice such a situation. The first developer deals with the UI part of the new functionality. The second developer writes the logic for this.In general, everything is fine in this example. Everyone goes about their business and does not touch their friend. But sometimes the developer dealing with the UI part does not have time to do something by the right time. A logic guy can write unit tests for his code. But he will not be able to call this logic from the application without any crutches.I came up with a solution to this problem. Now the developer will be able to call new features from the auxiliary menu. I called this menu DebugFriend.The menu presented in this package now has 4 screens:
- Device Info
- App data
- Debug actions
- Custom actionsMore information about each of them:
Device Info
On this screen, you can view information about the device on which your application is running.App data
On this screen, you can view and manage all the cache data of your application (stored in the root directory of your application )Debug actions
This screen allows you to interact with the Flutter Inspector features directly from the application. In addition, there are several more custom actions. An example is exiting the application.Custom actions
A list of features of your application. You can test them right here. This is a reference to the problem that I described above.QuickstartIf you have read up to this point, then it’s time to find out how to use this package in your code. First of all, install this package in your applicationWrap your MaterialApp’s home or builder widget in a DebugFriendView.
Like in exampleBy default, you will not see the debug menu and the debug button in the release build. But if you suddenly want to change this, change the value of the enabled boolean field to the one you want. For more information about the package, see the github documentation.In the end, I would like to say that I already use this package on several of my work projects. I will support and develop it in the near future. If it’s not difficult for you, put star on Github and participate in the development, if you want.
September 06, 2021 at 02:12PM by frezycode
https://ift.tt/2Yqx3Ff
Simplify test new features in Flutter app with debug_friend
When we are working on a large product, development is carried out in teams. We divide the work into sprints, weeks, functions and periods. Recently, I began to notice such a situation. The first developer deals with the UI part of the new functionality. The second developer writes the logic for this.In general, everything is fine in this example. Everyone goes about their business and does not touch their friend. But sometimes the developer dealing with the UI part does not have time to do something by the right time. A logic guy can write unit tests for his code. But he will not be able to call this logic from the application without any crutches.I came up with a solution to this problem. Now the developer will be able to call new features from the auxiliary menu. I called this menu DebugFriend.The menu presented in this package now has 4 screens:
- Device Info
- App data
- Debug actions
- Custom actionsMore information about each of them:
Device Info
On this screen, you can view information about the device on which your application is running.App data
On this screen, you can view and manage all the cache data of your application (stored in the root directory of your application )Debug actions
This screen allows you to interact with the Flutter Inspector features directly from the application. In addition, there are several more custom actions. An example is exiting the application.Custom actions
A list of features of your application. You can test them right here. This is a reference to the problem that I described above.QuickstartIf you have read up to this point, then it’s time to find out how to use this package in your code. First of all, install this package in your applicationWrap your MaterialApp’s home or builder widget in a DebugFriendView.
Like in exampleBy default, you will not see the debug menu and the debug button in the release build. But if you suddenly want to change this, change the value of the enabled boolean field to the one you want. For more information about the package, see the github documentation.In the end, I would like to say that I already use this package on several of my work projects. I will support and develop it in the near future. If it’s not difficult for you, put star on Github and participate in the development, if you want.
September 06, 2021 at 02:12PM by frezycode
https://ift.tt/2Yqx3Ff
Dart packages
debug_friend | Flutter package
Flutter debug helper widget with device info, common and custom actions.
New post on /r/flutterdev subreddit:
Simple Flutter app (daily wisdom from Game of Thrones) looking for adoption
Hi, I just wanted to share the source code of an app I made last summer in case anyone wants to take on the project.Last summer I decided to start learning Flutter and play a bit with it. After following some tutorials, I made my first simple app: it's a sort of calendar, where for every day you get a random quote from the A Song of Ice and Fire books. You can also insert your name or nickname, which will change the seed for the random number generator, thus providing some kind of personalization; there are also nine themes available, based on some popular houses. The app should be ready for publishing, at least for Android, but then life got in the way and I abandoned the project. Now I've changed computer and I'm not going to reinstall the Android SDK and all of that because I don't plan to code Flutter apps in the near future. However, I thought it would be a pity to completely abandon the project, because I still really like the idea, so if anyone wants to mess with it and maybe publish it here's the link to the complete app folder (plus a couple screenshots): https://drive.google.com/drive/folders/1tjSJgeAX6oAd0sKEFHoBbyiZePzKv8un?usp=sharingIf you decide to do something with this project we can keep in touch :)
September 06, 2021 at 03:40PM by JMarty97
https://ift.tt/2WYs6TS
Simple Flutter app (daily wisdom from Game of Thrones) looking for adoption
Hi, I just wanted to share the source code of an app I made last summer in case anyone wants to take on the project.Last summer I decided to start learning Flutter and play a bit with it. After following some tutorials, I made my first simple app: it's a sort of calendar, where for every day you get a random quote from the A Song of Ice and Fire books. You can also insert your name or nickname, which will change the seed for the random number generator, thus providing some kind of personalization; there are also nine themes available, based on some popular houses. The app should be ready for publishing, at least for Android, but then life got in the way and I abandoned the project. Now I've changed computer and I'm not going to reinstall the Android SDK and all of that because I don't plan to code Flutter apps in the near future. However, I thought it would be a pity to completely abandon the project, because I still really like the idea, so if anyone wants to mess with it and maybe publish it here's the link to the complete app folder (plus a couple screenshots): https://drive.google.com/drive/folders/1tjSJgeAX6oAd0sKEFHoBbyiZePzKv8un?usp=sharingIf you decide to do something with this project we can keep in touch :)
September 06, 2021 at 03:40PM by JMarty97
https://ift.tt/2WYs6TS
New post on /r/flutterdev subreddit:
Mobile native widget with flutter
I started my first mobile app with flutter, and I'm asking to myself if I can implement a native widget to shows some information without opening the app.I didn't found nothing around the web (maybe I'm wrong) and for this reason, I want to talk with the community if there is any possibility to add this feature to my app.Thanks.
September 06, 2021 at 03:25PM by crazyjoker96
https://ift.tt/3jNYH7C
Mobile native widget with flutter
I started my first mobile app with flutter, and I'm asking to myself if I can implement a native widget to shows some information without opening the app.I didn't found nothing around the web (maybe I'm wrong) and for this reason, I want to talk with the community if there is any possibility to add this feature to my app.Thanks.
September 06, 2021 at 03:25PM by crazyjoker96
https://ift.tt/3jNYH7C
reddit
Mobile native widget with flutter
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 101 - Tutorials, videos, packages, and much more!
https://ift.tt/3BMMGFG
September 06, 2021 at 03:24PM by vensign
https://ift.tt/38KRcYA
Flutter Tap Weekly Newsletter Week 101 - Tutorials, videos, packages, and much more!
https://ift.tt/3BMMGFG
September 06, 2021 at 03:24PM by vensign
https://ift.tt/38KRcYA
Fluttertap
Newsletter Issue 101
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 101
New post on /r/flutterdev subreddit:
Build Realtime Flutter Apps with Open Source Firebase Alternative
https://twitter.com/ThePracticalDev/status/1434194045459476486?s=20
September 06, 2021 at 05:04PM by thecouchdev
https://ift.tt/38JFoFZ
Build Realtime Flutter Apps with Open Source Firebase Alternative
https://twitter.com/ThePracticalDev/status/1434194045459476486?s=20
September 06, 2021 at 05:04PM by thecouchdev
https://ift.tt/38JFoFZ
Twitter
DEV Community 👩💻👨💻
In this tutorial, we will dive into the details and understand how to develop a Flutter app leveraging Appwrite's realtime capabilities. { author: @LohaniDamodar } #DEVCommunity dev.to/appwrite/getti…
New post on /r/flutterdev subreddit:
Building a Quizz app using Flutter
https://youtu.be/N-Jw-Nf_gZ0
September 06, 2021 at 05:01PM by DoctorCode8
https://ift.tt/3yOrtJi
Building a Quizz app using Flutter
https://youtu.be/N-Jw-Nf_gZ0
September 06, 2021 at 05:01PM by DoctorCode8
https://ift.tt/3yOrtJi
YouTube
Making a Quiz App using Flutter
Hey!
In this video, I'm going to show you how to make a quiz app with Flutter.
by the end of the tutorial, you will be able to
- create your own custom UI
- use and manipulate the PageView Widget in Flutter
- navigate and pass data between two screens in…
In this video, I'm going to show you how to make a quiz app with Flutter.
by the end of the tutorial, you will be able to
- create your own custom UI
- use and manipulate the PageView Widget in Flutter
- navigate and pass data between two screens in…
New post on /r/flutterdev subreddit:
Flutter Video Player Tutorial With Controls and Fullscreen | Aspect Rati...
https://youtube.com/watch?v=OXQ5ee6p9ZA&feature=share
September 06, 2021 at 04:52PM by DBestech
https://ift.tt/3thyQbj
Flutter Video Player Tutorial With Controls and Fullscreen | Aspect Rati...
https://youtube.com/watch?v=OXQ5ee6p9ZA&feature=share
September 06, 2021 at 04:52PM by DBestech
https://ift.tt/3thyQbj
YouTube
Flutter Video Player Tutorial With Controls Fullscreen | Aspect Ratio ListView | Url Example
We will do a flutter video player tutorial with controls step by step. We will cover video player controls, aspect ratio, load videos from network using json files from network or url, control video audio, play next video and previous video. We are not going…
New post on /r/flutterdev subreddit:
A Quick Guide on Implementing Automated testing in Flutter - FlutterBeads Blog
https://ift.tt/3n8NnoI
September 06, 2021 at 04:41PM by pinkeshdarji
https://ift.tt/3jLTZab
A Quick Guide on Implementing Automated testing in Flutter - FlutterBeads Blog
https://ift.tt/3n8NnoI
September 06, 2021 at 04:41PM by pinkeshdarji
https://ift.tt/3jLTZab
FlutterBeads
Automated testing in Flutter: An overview - FlutterBeads
<span class="rt-reading-time" style="display: block;"><span class="rt-label rt-prefix"></span> <span class="rt-time">6</span> <span class="rt-label rt-postfix">min read</span></span> The success of any application depends on its quality. For customers to…
New tweet from FlutterDev:
⚡️ Performance profiling and jank-busting These can seem like topics for advanced devs, but don't sell yourself short! In this blog post @filiphracek walks through how a few tools and a little know-how can add up to big time improvements... Read → https://t.co/SI0aIpe0UM https://t.co/khoOaJBwS2— Flutter (@FlutterDev) Sep 6, 2021
September 06, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1434909264347271173
⚡️ Performance profiling and jank-busting These can seem like topics for advanced devs, but don't sell yourself short! In this blog post @filiphracek walks through how a few tools and a little know-how can add up to big time improvements... Read → https://t.co/SI0aIpe0UM https://t.co/khoOaJBwS2— Flutter (@FlutterDev) Sep 6, 2021
September 06, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1434909264347271173
Medium
Raster thread performance optimization tips
Recently, I sat down to tweak the performance of FlutterFolio, an app that was built as a design showcase for Flutter Engage. With a…
New post on /r/flutterdev subreddit:
Widget inheritance versus composition - what should I do?
After a bit of research, I learned that Flutter for the most part prefers to use composition rather than inheritance when it comes to widgets. For example:- https://flutter.dev/docs/resources/architectural-overview#composition- https://stackoverflow.com/questions/51476234/subclass-a-class-that-extends-statelesswidget-or-statefulwidget-class-https://groups.google.com/g/flutter-dev/c/muVUV4z71fs/m/DS0twymQCAAJWhat if multiple widgets use the same class member (for example an APIService class)? My first instinct was to create a BasePage and have the classes inherit from this BasePage widget - but realized this may not be the proper way to do things in Flutter. For example:Class BasePageWidget {
final apiService = APIService();
}Class A extends BasePageWidget {
super.apiService to use inherited class
}What is the commonly accepted way to approach this? Do I simply add the class member to all of the widgets the utilize the ApiService? This seems a bit repetitive. For example:Class A {
final ApiService = APIService()...useApiService somwhere in the class
}Class B {
final ApiService = APIService()...useApiService somwhere in the class
}
September 06, 2021 at 07:01PM by Material_Problem_380
https://ift.tt/3DRXzrj
Widget inheritance versus composition - what should I do?
After a bit of research, I learned that Flutter for the most part prefers to use composition rather than inheritance when it comes to widgets. For example:- https://flutter.dev/docs/resources/architectural-overview#composition- https://stackoverflow.com/questions/51476234/subclass-a-class-that-extends-statelesswidget-or-statefulwidget-class-https://groups.google.com/g/flutter-dev/c/muVUV4z71fs/m/DS0twymQCAAJWhat if multiple widgets use the same class member (for example an APIService class)? My first instinct was to create a BasePage and have the classes inherit from this BasePage widget - but realized this may not be the proper way to do things in Flutter. For example:Class BasePageWidget {
final apiService = APIService();
}Class A extends BasePageWidget {
super.apiService to use inherited class
}What is the commonly accepted way to approach this? Do I simply add the class member to all of the widgets the utilize the ApiService? This seems a bit repetitive. For example:Class A {
final ApiService = APIService()...useApiService somwhere in the class
}Class B {
final ApiService = APIService()...useApiService somwhere in the class
}
September 06, 2021 at 07:01PM by Material_Problem_380
https://ift.tt/3DRXzrj
docs.flutter.dev
Flutter architectural overview
A high-level overview of the architecture of Flutter, including the core principles and concepts that form its design.
New post on /r/flutterdev subreddit:
How to code a 2D ripple effect in flutter
https://ift.tt/3jNIy1R
September 06, 2021 at 06:16PM by mcfly-dev
https://ift.tt/3l2lJGW
How to code a 2D ripple effect in flutter
https://ift.tt/3jNIy1R
September 06, 2021 at 06:16PM by mcfly-dev
https://ift.tt/3l2lJGW
Medium
Creating a 2D ripple effect in flutter
Creating a Flutter 2D ripple effect using a RenderObject. Here is an humble article on how it works. Source code available.
New post on /r/flutterdev subreddit:
Clean Network Layer in Flutter [Dio + Freezed + Json_Annotation]
https://ift.tt/38HSljG
September 06, 2021 at 08:42PM by i-Senku
https://ift.tt/3jKm166
Clean Network Layer in Flutter [Dio + Freezed + Json_Annotation]
https://ift.tt/38HSljG
September 06, 2021 at 08:42PM by i-Senku
https://ift.tt/3jKm166
Medium
Clean Network Layer in Flutter [Dio + Freezed + Json_Annotation]
Dear Friends, In this article, I will show the network usage that I use in my own projects. For the sake of simplicity, I will not use any…
New post on /r/flutterdev subreddit:
Flutter UI Secret One
https://ift.tt/3jQP2gC
September 07, 2021 at 01:53AM by fredgrott
https://ift.tt/3DPULuV
Flutter UI Secret One
https://ift.tt/3jQP2gC
September 07, 2021 at 01:53AM by fredgrott
https://ift.tt/3DPULuV
Medium
Flutter UI Secret One
There are numerous responsive plugins for Flutter, but that is only a container, not the secret in how to effectively use it more power…
New post on /r/flutterdev subreddit:
How to use Graphqlprovider in multi provider
How can i use graphqlprovider in multiprovider that wraps the materialapp. I have other providers and want to include graphql. Any help? Thanks
September 07, 2021 at 01:24AM by Jaymal1
https://ift.tt/3l3M8V5
How to use Graphqlprovider in multi provider
How can i use graphqlprovider in multiprovider that wraps the materialapp. I have other providers and want to include graphql. Any help? Thanks
September 07, 2021 at 01:24AM by Jaymal1
https://ift.tt/3l3M8V5
reddit
How to use Graphqlprovider in multi provider
A subreddit for Google's portable UI framework.