New post on /r/flutterdev subreddit:
Knowing native before multiplatform
hello guys, is it necessary to know some native mobile development before learning a cross platform framework like flutter. If yes what are some of the benefits and would not knowing native development hold me back in some situations?
June 07, 2021 at 12:26PM by man_kobie
https://ift.tt/34X01MZ
Knowing native before multiplatform
hello guys, is it necessary to know some native mobile development before learning a cross platform framework like flutter. If yes what are some of the benefits and would not knowing native development hold me back in some situations?
June 07, 2021 at 12:26PM by man_kobie
https://ift.tt/34X01MZ
reddit
Knowing native before multiplatform
hello guys, is it necessary to know some native mobile development before learning a cross platform framework like flutter. If yes what are some...
New post on /r/flutterdev subreddit:
Writing custom Widgets in Flutter (Part 3.a) — SimpleOverlay (with helpers)
https://ift.tt/3w1r5GO
June 07, 2021 at 12:17PM by matrixdev
https://ift.tt/3g3z68V
Writing custom Widgets in Flutter (Part 3.a) — SimpleOverlay (with helpers)
https://ift.tt/3w1r5GO
June 07, 2021 at 12:17PM by matrixdev
https://ift.tt/3g3z68V
Medium
Writing custom Widgets in Flutter (Part 3.a) — SimpleOverlay (with helpers)
Learn how to create a custom overlay on top of any Widget with the usage of helpers.
New post on Flutter Dev Google group:
Converting a plain Uint8List to image widget
I'm new to Flutter and I have a question regarding a small project of mine. I'm trying to show an image I'm receiving through a socket. I have an Uint8List representing the image matrix (not encoded in any way), and I have succeded transforming it into an Image widget with the following code:
June 07, 2021 at 01:39PM by bimBamBom
https://ift.tt/3w1qkh9
Converting a plain Uint8List to image widget
I'm new to Flutter and I have a question regarding a small project of mine. I'm trying to show an image I'm receiving through a socket. I have an Uint8List representing the image matrix (not encoded in any way), and I have succeded transforming it into an Image widget with the following code:
June 07, 2021 at 01:39PM by bimBamBom
https://ift.tt/3w1qkh9
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Top 10 Features of Flutter Event Calendar
https://ift.tt/34X9lQZ
June 07, 2021 at 02:13PM by ArunITTech
https://ift.tt/34ScAJH
Top 10 Features of Flutter Event Calendar
https://ift.tt/34X9lQZ
June 07, 2021 at 02:13PM by ArunITTech
https://ift.tt/34ScAJH
Syncfusion Blogs
Top 10 Features of Flutter Event Calendar | Syncfusion Blogs
Our Syncfusion Flutter event calendar has so many useful features that aid in managing appointments. This blog explains the top 10.
New post on /r/flutterdev subreddit:
Twitter Clone
I have asked this question before but got no assistance.So say for instance I want to create a Twitter clone, twitter is very large with millions of users simultaneously messaging, uploading and searching.If I was to create an app like that expecting at least 50 million users. I am only conversant with firebase and firebase can't handle this even if it could I would want to expand my knowledge by using GCP and I know nothing about GCP or what part of GCP to use as it's a whole lot products under it.I know Firebase is under GCP but I hope I am understood, as I do not want to use firebase for this project. How can I go about it.
June 07, 2021 at 02:03PM by RexOverAll
https://ift.tt/3x7XETP
Twitter Clone
I have asked this question before but got no assistance.So say for instance I want to create a Twitter clone, twitter is very large with millions of users simultaneously messaging, uploading and searching.If I was to create an app like that expecting at least 50 million users. I am only conversant with firebase and firebase can't handle this even if it could I would want to expand my knowledge by using GCP and I know nothing about GCP or what part of GCP to use as it's a whole lot products under it.I know Firebase is under GCP but I hope I am understood, as I do not want to use firebase for this project. How can I go about it.
June 07, 2021 at 02:03PM by RexOverAll
https://ift.tt/3x7XETP
reddit
Twitter Clone
I have asked this question before but got no assistance. So say for instance I want to create a Twitter clone, twitter is very large with...
New post on /r/flutterdev subreddit:
Responsive_sizer v3 is out 🎉
Almost two months ago, I released https://pub.dev/packages/responsive_sizer as my first package and got a good response from the community. (Thanks guys), so I decided to spend more time working on the package and fixing some issues.This version brings in many changes:Breaking Change: The package will set the correct width and height regardless of the orientation See Issue#6Breaking Change: Changed the calculation of `.sp`Added a way to check the device type (Android, Ios, Web, Windows, Mac, Linux, and Fuschia)I hope you like my package. If you have any recommendations or encounter any issue, feel free to create an issue or PR in the repo. Have a nice day!
June 07, 2021 at 01:53PM by quantumizeCode
https://ift.tt/3ptbj50
Responsive_sizer v3 is out 🎉
Almost two months ago, I released https://pub.dev/packages/responsive_sizer as my first package and got a good response from the community. (Thanks guys), so I decided to spend more time working on the package and fixing some issues.This version brings in many changes:Breaking Change: The package will set the correct width and height regardless of the orientation See Issue#6Breaking Change: Changed the calculation of `.sp`Added a way to check the device type (Android, Ios, Web, Windows, Mac, Linux, and Fuschia)I hope you like my package. If you have any recommendations or encounter any issue, feel free to create an issue or PR in the repo. Have a nice day!
June 07, 2021 at 01:53PM by quantumizeCode
https://ift.tt/3ptbj50
Dart packages
responsive_sizer | Flutter package
Responsive Sizer helps implement a reponsive layout by providing helper widgets and extensions.
New post on /r/flutterdev subreddit:
[Proof of Concept] Flutter Theme - A Flutter Material Theme Editor
WARNING: This app is developed as a proof of concept and should not be used in production.Inspired by Panache, I've been working on a Flutter material theme editor to create and generate a
June 07, 2021 at 01:52PM by zeshuaro
https://ift.tt/2TEavyq
[Proof of Concept] Flutter Theme - A Flutter Material Theme Editor
WARNING: This app is developed as a proof of concept and should not be used in production.Inspired by Panache, I've been working on a Flutter material theme editor to create and generate a
ThemeData
which can be used in your app. However, this app is only a proof of concept right now and is far from being a fully functional app. And I would like to gather some feedback from the community before moving forward with the project.I read through this post a couple weeks ago talking about the difficulty of theming Flutter apps. I agree that there are difficulties and limitations with ThemeData
, especially in the development of this app when I was testing out all the theming parameters. There are so many parameters and taking account on all of them turns out to be a very challenging work. As a result, I'm interested to see how the community feels about having an app like this and if people are interested in using it.At the moment, the app can be run on Web and Desktop (Windows and Linux not tested). It supports defining the colours globally and for some widgets. It also supports changing some other properties for widgets like AppBar
, BottomNavigationBar
, ElevatedButton
etc. You can export and import your theme as a json
file. I included instructions on how to use it in your app on the repository. But as I mentioned earlier, a lot of widgets and parameters are not implemented and the app is not fully tested.It will be great if you can try out the app and even better if you can complete this short survey. The survey results will help me to decide if it's worth continue working on this app. Otherwise, any feedback on this thread would be much appreciated as well.Thanks for your interest!Link: https://zeshuaro.github.io/flutter_theme/Repo: https://github.com/zeshuaro/flutter_themeJune 07, 2021 at 01:52PM by zeshuaro
https://ift.tt/2TEavyq
GitHub
GitHub - rxlabz/panache: 🎨 Flutter Material Theme editor
🎨 Flutter Material Theme editor. Contribute to rxlabz/panache development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Flutter Static Analysis, Linting
https://ift.tt/3ghXv9h
June 07, 2021 at 01:38PM by fredgrott
https://ift.tt/3v0tAIj
Flutter Static Analysis, Linting
https://ift.tt/3ghXv9h
June 07, 2021 at 01:38PM by fredgrott
https://ift.tt/3v0tAIj
Medium
Flutter Static Analysis, Linting
Static analysis allows you to find problems before executing a single line of code. There are two major groups of static analysis, linting…
New post on /r/flutterdev subreddit:
How and Where to find a senior, experienced flutter dev?
Hi, Y'allI'm a Flutter dev myself and wrote 80% of my startup MVP myself. but still having problems with some issues like state management, Cloud integration, App flow, and refactoring.Thank you
June 07, 2021 at 01:13PM by AdNo6324
https://ift.tt/3itrA8V
How and Where to find a senior, experienced flutter dev?
Hi, Y'allI'm a Flutter dev myself and wrote 80% of my startup MVP myself. but still having problems with some issues like state management, Cloud integration, App flow, and refactoring.Thank you
June 07, 2021 at 01:13PM by AdNo6324
https://ift.tt/3itrA8V
reddit
How and Where to find a senior, experienced flutter dev?
Hi, Y'all I'm a Flutter dev myself and wrote 80% of my startup MVP myself. but still having problems with some issues like state management,...
New post on Flutter Dev Google group:
sign up users on their behalf and update profile information
Hi All I am trying to determine if the following scenario is possible. I want the ability to have certain users within my organisation sign up other users and at the same time set their profiles with certain custom fields to limit access to certain parts of the app. So I would have A login for
June 07, 2021 at 02:57PM by Sven Arndt
https://ift.tt/3puZqvB
sign up users on their behalf and update profile information
Hi All I am trying to determine if the following scenario is possible. I want the ability to have certain users within my organisation sign up other users and at the same time set their profiles with certain custom fields to limit access to certain parts of the app. So I would have A login for
June 07, 2021 at 02:57PM by Sven Arndt
https://ift.tt/3puZqvB
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 88 - Tutorials, videos, packages, and much more!
https://ift.tt/2RyHN1s
June 07, 2021 at 03:35PM by vensign
https://ift.tt/2Ta29i4
Flutter Tap Weekly Newsletter Week 88 - Tutorials, videos, packages, and much more!
https://ift.tt/2RyHN1s
June 07, 2021 at 03:35PM by vensign
https://ift.tt/2Ta29i4
Fluttertap
Newsletter Issue 88
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 88
New post on /r/flutterdev subreddit:
I shared my proposal to structure GraphQL flutter apps last week and received a lot of positive feedback! I've written a follow-up post going into detail on mapping GraphQL to Dart types, hope you like it!
https://ift.tt/3gjh6pA
June 07, 2021 at 04:48PM by budde377
https://ift.tt/3zaN00c
I shared my proposal to structure GraphQL flutter apps last week and received a lot of positive feedback! I've written a follow-up post going into detail on mapping GraphQL to Dart types, hope you like it!
https://ift.tt/3gjh6pA
June 07, 2021 at 04:48PM by budde377
https://ift.tt/3zaN00c
Medium
GraphQL Codegen deep-dive
This post is a deep dive into the graphql_codegen Dart-library, available on pub.dev/packages/graphql_codegen. The post will…
New post on /r/flutterdev subreddit:
TRESHOP Flutter eCommerce UI Design
https://youtu.be/O5bbYklLE4Y
June 07, 2021 at 04:39PM by dickyrey
https://ift.tt/3z1Pyh8
TRESHOP Flutter eCommerce UI Design
https://youtu.be/O5bbYklLE4Y
June 07, 2021 at 04:39PM by dickyrey
https://ift.tt/3z1Pyh8
YouTube
TRESHOP Flutter eCommerce UI Design Tutorial
#Flutter #MobileApps #Ecommerce #UI #Tutorial
In this video, we will learn how to make dark and light theme in #Flutter. also we build home page for this #ecommerce #app
Flutter Barbershop UI Kit 20% OFF !!!
GET NOW with this link : https://bit.ly/33OElTG…
In this video, we will learn how to make dark and light theme in #Flutter. also we build home page for this #ecommerce #app
Flutter Barbershop UI Kit 20% OFF !!!
GET NOW with this link : https://bit.ly/33OElTG…
New post on /r/flutterdev subreddit:
The beauty of the Flutter's programming language: 4 superb features of Dart
https://ift.tt/2TOFTun
June 07, 2021 at 06:14PM by svprdga
https://ift.tt/3pspQOq
The beauty of the Flutter's programming language: 4 superb features of Dart
https://ift.tt/2TOFTun
June 07, 2021 at 06:14PM by svprdga
https://ift.tt/3pspQOq
David Serrano
The beauty of the Flutter's programming language: 4 superb features of Dart
A little deep dive into some of the most useful features of the Dart language.
New post on /r/flutterdev subreddit:
We're building Couchers.org, a new open-source alternative to Couchsurfing — non-profit, community-led and free forever. We're looking for Flutter devs to help us decide on our mobile architecture.
If you're interested in helping out on an exciting, high-impact and well maintained open-source project, we're looking for experienced Flutter devs who can help guide our mobile architecture decisions. Let us know if you're interested: either with a comment, dm or through signing up on the site and putting in a volunteer form (past the login page).Sign up to the web beta and to contribute hereCouchers.org is a new platform for Couchsurfing that was started after CS decided to move to a subscription model and paywall users out of their accounts. Our platform is being entirely built by a volunteer team of about 50 couch surfers and travel enthusiasts, spread among dev, design, marketing, support, and community engagement. We're creating a modern, well-built open-source platform that is inclusive, safety-focused, and very importantly free for all users forever, with a distributed moderation approach to make the platform community-led. To learn more details and find out what makes us different from existing couch surfing options, you can read about our plan, visit our community forum, and try out our recently released beta web app.We have a clean separation between our backend python API and frontends (web app built with react/typescript), feel free to check out our repo.We're currently looking for experienced Flutter devs who can help us with our mobile architecture decisions. As you can imagine, a volunteer project would benefit from a cross-OS implementation to minimise maintenance, so we're trying to decide between React Native and Flutter, also with considerations for what is popular used so we can attract more volunteers (which is how we landed with React for our web frontend).Please let us know if you'd like to help out, either through consulting on this decision or through implementing it!
June 07, 2021 at 05:39PM by CouchersOrg
https://ift.tt/3v1WEPz
We're building Couchers.org, a new open-source alternative to Couchsurfing — non-profit, community-led and free forever. We're looking for Flutter devs to help us decide on our mobile architecture.
If you're interested in helping out on an exciting, high-impact and well maintained open-source project, we're looking for experienced Flutter devs who can help guide our mobile architecture decisions. Let us know if you're interested: either with a comment, dm or through signing up on the site and putting in a volunteer form (past the login page).Sign up to the web beta and to contribute hereCouchers.org is a new platform for Couchsurfing that was started after CS decided to move to a subscription model and paywall users out of their accounts. Our platform is being entirely built by a volunteer team of about 50 couch surfers and travel enthusiasts, spread among dev, design, marketing, support, and community engagement. We're creating a modern, well-built open-source platform that is inclusive, safety-focused, and very importantly free for all users forever, with a distributed moderation approach to make the platform community-led. To learn more details and find out what makes us different from existing couch surfing options, you can read about our plan, visit our community forum, and try out our recently released beta web app.We have a clean separation between our backend python API and frontends (web app built with react/typescript), feel free to check out our repo.We're currently looking for experienced Flutter devs who can help us with our mobile architecture decisions. As you can imagine, a volunteer project would benefit from a cross-OS implementation to minimise maintenance, so we're trying to decide between React Native and Flutter, also with considerations for what is popular used so we can attract more volunteers (which is how we landed with React for our web frontend).Please let us know if you'd like to help out, either through consulting on this decision or through implementing it!
June 07, 2021 at 05:39PM by CouchersOrg
https://ift.tt/3v1WEPz
couchers.org
Couchers.org Beta
The new alternative to Couchsurfing™. Free forever. Community-led. Non-profit. Modern.
New post on /r/flutterdev subreddit:
Flutter with firebase series Part 2 - Authentication
https://youtu.be/0oxQ5888EsQ
June 06, 2021 at 08:02AM by SIVARAM16
https://ift.tt/3pu4jox
Flutter with firebase series Part 2 - Authentication
https://youtu.be/0oxQ5888EsQ
June 06, 2021 at 08:02AM by SIVARAM16
https://ift.tt/3pu4jox
YouTube
Flutter with Firebase | Part - 2 | Firebase Authentication for Android, IOS, Web
In this video, I've shown how to implement firebase authentication in flutter for android, web, IOS.
Firebase SDK Setup: https://youtu.be/9UKLcgv_2BE
Here is the code repo: https://github.com/ThalapathySiva/Flutter-with-Firebase-Tutorial/tree/master/f…
Firebase SDK Setup: https://youtu.be/9UKLcgv_2BE
Here is the code repo: https://github.com/ThalapathySiva/Flutter-with-Firebase-Tutorial/tree/master/f…
New post on Flutter Dev Google group:
Music Stops Playing on IOS Device but works on Emulator?
Hello All, Just a general question as I have a radio application and we've had constant issues with getting this app to release for Apple due to it's background music services. I've enabled everything that I can think of but weirdly why does it work on the emulator and not real device? Any
June 07, 2021 at 07:05PM by Bridget Kelly O'Sheehan
https://ift.tt/3fXOdjP
Music Stops Playing on IOS Device but works on Emulator?
Hello All, Just a general question as I have a radio application and we've had constant issues with getting this app to release for Apple due to it's background music services. I've enabled everything that I can think of but weirdly why does it work on the emulator and not real device? Any
June 07, 2021 at 07:05PM by Bridget Kelly O'Sheehan
https://ift.tt/3fXOdjP
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
MaterialBasedCupertinoThemeData
This is the wrong way to use it to theme CupertinoApps:late final MaterialBasedCupertinoThemeData cupertinoThemeData = MaterialBasedCupertinoThemeData(materialTheme: materialTheme);
// should be able to define one colorscheme and the material Theme infrastructure figures out things
// for light, high contrast light and high contrast dark
ThemeData materialTheme = ThemeData(
brightness: appBrightness,
visualDensity: VisualDensity.adaptivePlatformDensity, cardTheme: myCardTheme, colorScheme: myMaterialAppColorsSchemeLight,
);For the correct way, wait two days for my article as it's not in the Flutter Docs and no bok on flutter covers it
June 07, 2021 at 07:11PM by fredgrott
https://ift.tt/2RtPG8a
MaterialBasedCupertinoThemeData
This is the wrong way to use it to theme CupertinoApps:late final MaterialBasedCupertinoThemeData cupertinoThemeData = MaterialBasedCupertinoThemeData(materialTheme: materialTheme);
// should be able to define one colorscheme and the material Theme infrastructure figures out things
// for light, high contrast light and high contrast dark
ThemeData materialTheme = ThemeData(
brightness: appBrightness,
visualDensity: VisualDensity.adaptivePlatformDensity, cardTheme: myCardTheme, colorScheme: myMaterialAppColorsSchemeLight,
);For the correct way, wait two days for my article as it's not in the Flutter Docs and no bok on flutter covers it
June 07, 2021 at 07:11PM by fredgrott
https://ift.tt/2RtPG8a
reddit
MaterialBasedCupertinoThemeData
This is the wrong way to use it to theme CupertinoApps: late final...
New post on Flutter Dev Google group:
Android - IOS differences
Hi all, I'm having a weird issue that only affects IOS sim (not tested on IOS device). My app uses an sqlite db to store the data from various elements of my app. This db data is copied to a list and displayed in the app. The only thing that's different is contacts. As I don't really want to
June 07, 2021 at 09:54PM by BabsKy
https://ift.tt/3gaCz4c
Android - IOS differences
Hi all, I'm having a weird issue that only affects IOS sim (not tested on IOS device). My app uses an sqlite db to store the data from various elements of my app. This db data is copied to a list and displayed in the app. The only thing that's different is contacts. As I don't really want to
June 07, 2021 at 09:54PM by BabsKy
https://ift.tt/3gaCz4c
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
How to add OnTap to container of this code?
import 'package:flutter/material.dart'; import 'package:flutter/cupertino.dart'; void main() => runApp(new MaterialApp(home: new HomePage(),)); class HomePage extends StatelessWidget { //final text = new Text('Text here', style: new TextStyle(fontSize: 50.0),); // final margin = const
June 07, 2021 at 10:01PM by sona
https://ift.tt/34VWIFV
How to add OnTap to container of this code?
import 'package:flutter/material.dart'; import 'package:flutter/cupertino.dart'; void main() => runApp(new MaterialApp(home: new HomePage(),)); class HomePage extends StatelessWidget { //final text = new Text('Text here', style: new TextStyle(fontSize: 50.0),); // final margin = const
June 07, 2021 at 10:01PM by sona
https://ift.tt/34VWIFV
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Top 30 Flutter Tips and Tricks
https://www.youtube.com/watch?v=5vDq5DXXxss
June 07, 2021 at 10:41PM by fluttermapp
https://ift.tt/3w0BvGU
Top 30 Flutter Tips and Tricks
https://www.youtube.com/watch?v=5vDq5DXXxss
June 07, 2021 at 10:41PM by fluttermapp
https://ift.tt/3w0BvGU
YouTube
Top 30 Flutter Tips and Tricks
Master app development 👉 https://fluttermapp.com/
Flutter Best Tips and Tricks for any Flutter Developer. Best Practices, Widgets, Plugins, Tips and Tricks with Flutter will be deliver into this Video. In other words, in this In this video, we will show…
Flutter Best Tips and Tricks for any Flutter Developer. Best Practices, Widgets, Plugins, Tips and Tricks with Flutter will be deliver into this Video. In other words, in this In this video, we will show…