New post on /r/flutterdev subreddit:
How to Enable Swift Support For Existing Project In Flutter?? - Flutter Agency
https://ift.tt/3fDtC4h
June 02, 2021 at 07:18AM by lil_dragplix
https://ift.tt/3fXATuK
How to Enable Swift Support For Existing Project In Flutter?? - Flutter Agency
https://ift.tt/3fDtC4h
June 02, 2021 at 07:18AM by lil_dragplix
https://ift.tt/3fXATuK
Flutter Agency - Mobile App Designing, Development & Consulting
How to Enable Swift Support For Existing Project In Flutter?? - Flutter Agency
Sometimes when the user is developing a flutter project user needs to way to enable swift support for the flutter project. So in this article, we will go through how to Enable Swift Support For Existing Project In Flutter. How to Enable Swift Support For…
New post on /r/flutterdev subreddit:
A guide on how to structure your GraphQL Flutter app!
https://ift.tt/3fHDOc9
June 02, 2021 at 09:35AM by budde377
https://ift.tt/3vPcfDu
A guide on how to structure your GraphQL Flutter app!
https://ift.tt/3fHDOc9
June 02, 2021 at 09:35AM by budde377
https://ift.tt/3vPcfDu
Medium
Structure your Flutter GraphQL apps
I’ve been struggling with how to structure my Flutter app for a while. It uses GraphQL to query and mutate data, and it always ends up with…
New post on /r/flutterdev subreddit:
Behind the Birth of Dart
https://youtu.be/ZGdqu3zW8yg
June 02, 2021 at 12:10PM by plangora
https://ift.tt/3uJKzhG
Behind the Birth of Dart
https://youtu.be/ZGdqu3zW8yg
June 02, 2021 at 12:10PM by plangora
https://ift.tt/3uJKzhG
YouTube
Behind the birth of Dart - Flying High with Flutter #9
Hi everyone! We had a great time with Kasper Lund. In this episode, Kasper shared with us the birth of Dart and we were totally amazed. Watch now! And don't ...
New post on Flutter Dev Google group:
is flutter.dev working?
Last several days I can't browse https://flutter.dev site: The connection has timed out The server at flutter.dev is taking too long to respond. Is the problem on my side (Kazakhstan) or something else?
June 02, 2021 at 02:44PM by Steepe Hare
https://ift.tt/3fFs7mi
is flutter.dev working?
Last several days I can't browse https://flutter.dev site: The connection has timed out The server at flutter.dev is taking too long to respond. Is the problem on my side (Kazakhstan) or something else?
June 02, 2021 at 02:44PM by Steepe Hare
https://ift.tt/3fFs7mi
flutter.dev
Flutter - Build apps for any screen
Flutter transforms the entire app development process. Build, test, and deploy beautiful mobile, web, desktop, and embedded apps from a single codebase.
New post on /r/flutterdev subreddit:
Right way to use SQLite in Flutter Apps using Sqflite | Flutter SQFLite Tutorials for beginners #1
https://youtu.be/3SU34qF8_v4
June 02, 2021 at 02:24PM by devstack06
https://ift.tt/3vNGwCk
Right way to use SQLite in Flutter Apps using Sqflite | Flutter SQFLite Tutorials for beginners #1
https://youtu.be/3SU34qF8_v4
June 02, 2021 at 02:24PM by devstack06
https://ift.tt/3vNGwCk
YouTube
Right way to use SQLite in Flutter Apps using Sqflite | Flutter SQFLite CRUD Operation #1
In this video we are going to setup the sqflite project in flutter, we are going to create the Database handlers and Model Class which will help you to use the sqflite in flutter.
🤩 Next Video : https://youtu.be/3SU34qF8_v4
🤩 GitHub Link: https://gith…
🤩 Next Video : https://youtu.be/3SU34qF8_v4
🤩 GitHub Link: https://gith…
New post on /r/flutterdev subreddit:
New app build with Flutter!
Hi guys, just wanted to show you the new app we made with Flutter!Let me know what you think.iOS -> https://play.google.com/store/apps/details?id=social.yutu.appAndroid -> https://play.google.com/store/apps/details?id=social.yutu.appOf course with null safety enabled!
June 02, 2021 at 01:55PM by adrian_antoci
https://ift.tt/3wLtOnG
New app build with Flutter!
Hi guys, just wanted to show you the new app we made with Flutter!Let me know what you think.iOS -> https://play.google.com/store/apps/details?id=social.yutu.appAndroid -> https://play.google.com/store/apps/details?id=social.yutu.appOf course with null safety enabled!
June 02, 2021 at 01:55PM by adrian_antoci
https://ift.tt/3wLtOnG
Google Play
YuTU - Apps on Google Play
Create your local community
New post on /r/flutterdev subreddit:
<b>Top 10 Features Of Flutter 2.2</b>
At the recent I/O conference, the flutter team confirmed that more than 200,000 apps are created with Flutter only in the Play Store. More than one in every eight new apps in Play store are built with Flutter. Popular companies like BMW, Shein, Tencent and new emerging companies use Flutter to create innovative apps. With Flutter 2.2, you get the way out for optimizing, polishing and improving iOS, Android, Web and <a href="https://solaceinfotech.com/blog/10-necessary-questions-to-ask-before-start-desktop-applications-development/">Desktop app</a> performance. Also there are more material icons, automatic scrolling behavior on mobile and desktop, improved text handling and lots of exciting features. Here we’ve curated some more new features of Flutter 2.2.Top 10 Features of Flutter 2.2-1. Dart 2.13-Dart also gets updated with new features accompanied by Flutter 2.2. It brings some new features to its FFI for calling C code, official Docker support and Google Cloud support for Dart backends. It also offers support type aliases that makes code easy to read and maintain.2. Performance Improvements-By using Dart’s split AOT compilation feature, Flutter team has built support for android apps to download modules ahead-of-time resource and code at runtime. They call these installable splits deferred components. It can reduce the initial app size and allow to download features and resources when a user needs them. Whereas, for ios, new update offers new tools to precompile shaders to remove or reduce the first-run jank. Jank occurs when the time to compile shaders goes beyond the time limit. These improved features of Android and iOS are now in preview mode.3. Type Alias-You can create a new name for any existing type and then that name can be used rather than an existing type. Prior to Dart 2.13 users can create a type alias for function now it’s extended to the variable type.For Example:<pre>typedef Length = double; final Length x = 4; Good thing about type alias is- it passes the type equality test also. You can legal to call the constructor on a type alias that names a class. Example: Void main() { debugPrint(double == Length); // True } Benefit of using type alias is that one can make it easy to read code to others. </pre>4. Dart Foreign Function Interface-<pre>FFI is a mechanism for calling C code. FFI has new feature through which users can wrap the inline array directly in dart. Example- class StructInlineArray extends Struct { @Array(8) external Array<Unit8> arr; } Rather than struct MyStruct { Unit8_t arr[8]; } One more improvement in FFI is that it now supports packed structs. And this help to avoid padding to lower overall memory consumption. For instance- @Packed(4) class TASKDIALOGCONFIG extends Struct { @Uint32() external int cbSize; @IntPtr() external int hwndParent; @IntPtr() external int hInstance; @Uint32() external int dwFlags; } </pre>5. Null Safety Update-<pre>Whenever you create a project with Flutter 2.2, it will by default generate a project with null safety. Most of the plugins are relieved to the null safety it is safe to migrate Flutter app to sound null safety. </pre>6. Custom Text Actions-<pre>With Flutter 2.2 users can completely customize the keystrokes associated with text actions. This feature serves lots of possibilities for Flutter developers. For instance, users can send message with ENTER Key while still allowing a new line to be inserted by Ctrl + ENTER. </pre>7. Mouse Cursor Over Text Spans-<pre>You might know that, TextSpan is not a widget. We can change the mouse cursor while hovering over a clickable widget except TextSpan. Now it’s a past with Flutter 2.2 when you are using TestSpan with GestureDetector user will get the corresponding mouse cursor. It supports onEnter and onExit events. </pre>8. Flutter Windows UWP Alpha-<pre>One more update with Flutter 2.2 is for desktop lovers, support for Windows UWP has moved to…
<b>Top 10 Features Of Flutter 2.2</b>
At the recent I/O conference, the flutter team confirmed that more than 200,000 apps are created with Flutter only in the Play Store. More than one in every eight new apps in Play store are built with Flutter. Popular companies like BMW, Shein, Tencent and new emerging companies use Flutter to create innovative apps. With Flutter 2.2, you get the way out for optimizing, polishing and improving iOS, Android, Web and <a href="https://solaceinfotech.com/blog/10-necessary-questions-to-ask-before-start-desktop-applications-development/">Desktop app</a> performance. Also there are more material icons, automatic scrolling behavior on mobile and desktop, improved text handling and lots of exciting features. Here we’ve curated some more new features of Flutter 2.2.Top 10 Features of Flutter 2.2-1. Dart 2.13-Dart also gets updated with new features accompanied by Flutter 2.2. It brings some new features to its FFI for calling C code, official Docker support and Google Cloud support for Dart backends. It also offers support type aliases that makes code easy to read and maintain.2. Performance Improvements-By using Dart’s split AOT compilation feature, Flutter team has built support for android apps to download modules ahead-of-time resource and code at runtime. They call these installable splits deferred components. It can reduce the initial app size and allow to download features and resources when a user needs them. Whereas, for ios, new update offers new tools to precompile shaders to remove or reduce the first-run jank. Jank occurs when the time to compile shaders goes beyond the time limit. These improved features of Android and iOS are now in preview mode.3. Type Alias-You can create a new name for any existing type and then that name can be used rather than an existing type. Prior to Dart 2.13 users can create a type alias for function now it’s extended to the variable type.For Example:<pre>typedef Length = double; final Length x = 4; Good thing about type alias is- it passes the type equality test also. You can legal to call the constructor on a type alias that names a class. Example: Void main() { debugPrint(double == Length); // True } Benefit of using type alias is that one can make it easy to read code to others. </pre>4. Dart Foreign Function Interface-<pre>FFI is a mechanism for calling C code. FFI has new feature through which users can wrap the inline array directly in dart. Example- class StructInlineArray extends Struct { @Array(8) external Array<Unit8> arr; } Rather than struct MyStruct { Unit8_t arr[8]; } One more improvement in FFI is that it now supports packed structs. And this help to avoid padding to lower overall memory consumption. For instance- @Packed(4) class TASKDIALOGCONFIG extends Struct { @Uint32() external int cbSize; @IntPtr() external int hwndParent; @IntPtr() external int hInstance; @Uint32() external int dwFlags; } </pre>5. Null Safety Update-<pre>Whenever you create a project with Flutter 2.2, it will by default generate a project with null safety. Most of the plugins are relieved to the null safety it is safe to migrate Flutter app to sound null safety. </pre>6. Custom Text Actions-<pre>With Flutter 2.2 users can completely customize the keystrokes associated with text actions. This feature serves lots of possibilities for Flutter developers. For instance, users can send message with ENTER Key while still allowing a new line to be inserted by Ctrl + ENTER. </pre>7. Mouse Cursor Over Text Spans-<pre>You might know that, TextSpan is not a widget. We can change the mouse cursor while hovering over a clickable widget except TextSpan. Now it’s a past with Flutter 2.2 when you are using TestSpan with GestureDetector user will get the corresponding mouse cursor. It supports onEnter and onExit events. </pre>8. Flutter Windows UWP Alpha-<pre>One more update with Flutter 2.2 is for desktop lovers, support for Windows UWP has moved to…
Solace Infotech Pvt Ltd
10 Necessary Questions To Ask Before Start Desktop Applications Development - Solace Infotech Pvt Ltd
10 Necessarry questions to ask before start desktop application development. Considerations for desktop application development.
New post on /r/flutterdev subreddit:
Is there a straightforward way to create modal that gets dismissed when the user swipes down?
I know this is more of an iOS paradigm, but is there a way to create a modal in flutter that is dismisable by just dragging down that works on iOS and Android?Example: https://images.squarespace-cdn.com/content/v1/5963d59386e6c005a77134ba/1591209736852-OB5E0Z66EPT13070YU9A/ke17ZwdGBToddI8pDm48kGN-LNnhqarKX6pkakskNDZZw-zPPgdn4jUwVcJE1ZvWEtT5uBSRWt4vQZAgTJucoTqqXjS3CfNDSuuf31e0tVEWBN-lGAmflG_vA8pWdp2bIrZva-qkljkuSBI4mtasNx926scO3xePJoa6uVJa9B4/readit+multiple+modal+views.gif
June 02, 2021 at 04:52PM by purecoaster
https://ift.tt/34D8N2E
Is there a straightforward way to create modal that gets dismissed when the user swipes down?
I know this is more of an iOS paradigm, but is there a way to create a modal in flutter that is dismisable by just dragging down that works on iOS and Android?Example: https://images.squarespace-cdn.com/content/v1/5963d59386e6c005a77134ba/1591209736852-OB5E0Z66EPT13070YU9A/ke17ZwdGBToddI8pDm48kGN-LNnhqarKX6pkakskNDZZw-zPPgdn4jUwVcJE1ZvWEtT5uBSRWt4vQZAgTJucoTqqXjS3CfNDSuuf31e0tVEWBN-lGAmflG_vA8pWdp2bIrZva-qkljkuSBI4mtasNx926scO3xePJoa6uVJa9B4/readit+multiple+modal+views.gif
June 02, 2021 at 04:52PM by purecoaster
https://ift.tt/34D8N2E
New post on Flutter Dev Google group:
IOS error when uploading flutter app to testflight
Anyone ever see this error? It comes up when trying to upload for testFlight? ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'Runner.app/Frameworks/Pods_Runner.framework/Pods_Runner' is not permitted. Your app can’t contain standalone executables or libraries, other than a valid
June 02, 2021 at 05:23PM by Wes Thierry
https://ift.tt/3fHitzm
IOS error when uploading flutter app to testflight
Anyone ever see this error? It comes up when trying to upload for testFlight? ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'Runner.app/Frameworks/Pods_Runner.framework/Pods_Runner' is not permitted. Your app can’t contain standalone executables or libraries, other than a valid
June 02, 2021 at 05:23PM by Wes Thierry
https://ift.tt/3fHitzm
New post on /r/flutterdev subreddit:
ELI5: Provider and state management VS shared preferences
I've made a few apps before, mostly recycled code from package examples and what not, since I'm mostly a backend guy and not pro. In most of my apps, I've found it easier to just store (boolean/string) configuration values in shared preferences and local storage/sqflite instead of using provider or some state management setup. Can someone advise between the point of using state management VS storing the variables?
June 02, 2021 at 05:59PM by Akandoji
https://ift.tt/3wUMSjp
ELI5: Provider and state management VS shared preferences
I've made a few apps before, mostly recycled code from package examples and what not, since I'm mostly a backend guy and not pro. In most of my apps, I've found it easier to just store (boolean/string) configuration values in shared preferences and local storage/sqflite instead of using provider or some state management setup. Can someone advise between the point of using state management VS storing the variables?
June 02, 2021 at 05:59PM by Akandoji
https://ift.tt/3wUMSjp
reddit
ELI5: Provider and state management VS shared preferences
I've made a few apps before, mostly recycled code from package examples and what not, since I'm mostly a backend guy and not pro. In most of my...
New post on /r/flutterdev subreddit:
Why Flutter doesn't support documents
https://www.youtube.com/watch?v=RfRqqX3aZlU
June 02, 2021 at 08:16PM by SuperDeclarative
https://ift.tt/3g7I6Iy
Why Flutter doesn't support documents
https://www.youtube.com/watch?v=RfRqqX3aZlU
June 02, 2021 at 08:16PM by SuperDeclarative
https://ift.tt/3g7I6Iy
YouTube
Why Flutter doesn't support documents
#Flutter can paint many things, but Flutter doesn't come ready to paint documents. Today, we'll talk about what Flutter is missing and what can be done about it.
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consul…
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consul…
New post on /r/flutterdev subreddit:
Bubble chat idea
Hi! I am a software developer and i just had this idea in mind and I would want to ask if it is an interesting idea. Thanks in advance for reading!The app would be a chat app where you could create a chat room with a word that would describe the theme or the subject that would be discussed.The active rooms would be seen as bubbles in your home screen like the agar.io game. By pressing on them you could enter that room and engage on the topic proposed.Does this sound appealing?View Poll
June 02, 2021 at 08:12PM by RedJohn27
https://ift.tt/2S8xdhI
Bubble chat idea
Hi! I am a software developer and i just had this idea in mind and I would want to ask if it is an interesting idea. Thanks in advance for reading!The app would be a chat app where you could create a chat room with a word that would describe the theme or the subject that would be discussed.The active rooms would be seen as bubbles in your home screen like the agar.io game. By pressing on them you could enter that room and engage on the topic proposed.Does this sound appealing?View Poll
June 02, 2021 at 08:12PM by RedJohn27
https://ift.tt/2S8xdhI
agar.io
Play online with players around the world as you try to become the biggest cell of them all!
Control your tiny cell and eat other players to grow larger! But watch out: players bigger than you will be trying to make you their lunch. Survive and eat long enough…
Control your tiny cell and eat other players to grow larger! But watch out: players bigger than you will be trying to make you their lunch. Survive and eat long enough…
New post on /r/flutterdev subreddit:
Why Flutter doesn't support documents
https://youtube.com/watch?v=RfRqqX3aZlU&feature=share
June 02, 2021 at 08:10PM by Pixelreddit
https://ift.tt/3yYxa8L
Why Flutter doesn't support documents
https://youtube.com/watch?v=RfRqqX3aZlU&feature=share
June 02, 2021 at 08:10PM by Pixelreddit
https://ift.tt/3yYxa8L
YouTube
Why Flutter doesn't support documents
#Flutter can paint many things, but Flutter doesn't come ready to paint documents. Today, we'll talk about what Flutter is missing and what can be done about it.
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consul…
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consul…
New post on /r/flutterdev subreddit:
Humpday Q&A/AMA :: 2nd June :: Roundtable on Flutter Announcements at Go...
https://youtube.com/watch?v=I4h5_nbWYn8&feature=share
June 02, 2021 at 07:40PM by Pixelreddit
https://ift.tt/3uKO9rV
Humpday Q&A/AMA :: 2nd June :: Roundtable on Flutter Announcements at Go...
https://youtube.com/watch?v=I4h5_nbWYn8&feature=share
June 02, 2021 at 07:40PM by Pixelreddit
https://ift.tt/3uKO9rV
YouTube
Humpday Q&A/AMA :: 2nd June :: Roundtable on Flutter Announcements at Google I/O
In addition to answering your questions about Flutter, today we're going to be talking about all the great Flutter news at Google I/O
New post on /r/flutterdev subreddit:
Embed UIViewController into UIKitView widget
Hi everybody! I developed a flutter plugin which is essentially a UIViewController that I am currently presenting into “Flutter side”, with a button, as a full screen modal but I am wondering if it is possible to “embed” this plugin into an UIKitView widget. I know I can show native UIViews into this widget but I was trying for a while showing the UIViewController into it with no success and now I’m skeptical al about it. What do you think?
June 02, 2021 at 08:39PM by quetool
https://ift.tt/3uFaNlH
Embed UIViewController into UIKitView widget
Hi everybody! I developed a flutter plugin which is essentially a UIViewController that I am currently presenting into “Flutter side”, with a button, as a full screen modal but I am wondering if it is possible to “embed” this plugin into an UIKitView widget. I know I can show native UIViews into this widget but I was trying for a while showing the UIViewController into it with no success and now I’m skeptical al about it. What do you think?
June 02, 2021 at 08:39PM by quetool
https://ift.tt/3uFaNlH
reddit
Embed UIViewController into UIKitView widget
Hi everybody! I developed a flutter plugin which is essentially a UIViewController that I am currently presenting into “Flutter side”, with a...
New post on /r/flutterdev subreddit:
Anyone else seeing dartfmt hanging VSCode lately?
Seems to have started happening a couple of weeks ago for me. I see a dialog/alert saying "Saving 'file.dart': Runing 'Dart' formatter (configure)." and it just hangs. I can Cancel, but of course it doesn't format.It seems to be less forgiving of syntax errors in the code than it used to be, which is a problem when you're making lots of changes/refactoring, and just want to save your work, regardless of whether it's currently correct or not.
June 02, 2021 at 08:36PM by DaveWoodX
https://ift.tt/3pfqgaR
Anyone else seeing dartfmt hanging VSCode lately?
Seems to have started happening a couple of weeks ago for me. I see a dialog/alert saying "Saving 'file.dart': Runing 'Dart' formatter (configure)." and it just hangs. I can Cancel, but of course it doesn't format.It seems to be less forgiving of syntax errors in the code than it used to be, which is a problem when you're making lots of changes/refactoring, and just want to save your work, regardless of whether it's currently correct or not.
June 02, 2021 at 08:36PM by DaveWoodX
https://ift.tt/3pfqgaR
reddit
r/FlutterDev - Anyone else seeing dartfmt hanging VSCode lately?
43 votes and 29 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Auto Colorized Text Avatar Plugin
Hi,This is Deniz and I've published the Colorized Text Avatar package to help developers to create colorful text avatars based on the users initials.It is simple but very useful package for both MVP and production applications. Enjoy it! 🔥All feedback and contributions are welcome!https://pub.dev/packages/colorize_text_avatar
June 02, 2021 at 09:59PM by Nevurix
https://ift.tt/2S4ETBM
Flutter Auto Colorized Text Avatar Plugin
Hi,This is Deniz and I've published the Colorized Text Avatar package to help developers to create colorful text avatars based on the users initials.It is simple but very useful package for both MVP and production applications. Enjoy it! 🔥All feedback and contributions are welcome!https://pub.dev/packages/colorize_text_avatar
June 02, 2021 at 09:59PM by Nevurix
https://ift.tt/2S4ETBM
New post on /r/flutterdev subreddit:
Is flutter really more than just ui framework?
Hi guys,I was really excited about the flutter whan i read about it the first time, there were opinions all over the internet that it should speed up development process significantly and make life easier for mobile developers. And it really was great, but now i think i was looking only at the surface. Unfrotunatately, i am not the android developer, i have backend and web experience mostly, and i think that's why i missed the important piece - flutter lacks of some key native features. I got to know it only after couple months of learning flutter and developing my mobile application. Here are two examples: - flutter has weak support for background services(android) - flutter has no support at all for foreground services with all the functionality related, like navigating to given route on notification clicked(android)I can tell you that most location services use foreground services. You want to write location service with flutter? Here you have, nice google map plugin. Foreground service to send location when app is in background? Ops... Houston we have a problem.Of course there are some workarounds to create foreground services in android and call it from flutter, but they are ugly, error prone and just lets be honest - flutter turns out to be UI framework mainly and therefore should not be marketed as a mobile framework. And it does not even aspire to be it. Flutter team is focused on expansion to other platforms instead of focusing on what they should yet implement on mobile platform, to make flutter complete mobile framework, not just UI framework. Yes, flutter is mobile framework if you want to create nothing more than simple hello world app. For more complex cases, be prepared for writing a lot of method channel code as a proxy to native platform code, or no solution at all. And please stop misleading(also on reddit) other people that they will be good with flutter only. No they won't, unless nice hello world is all they would like to get from flutter. They should have at least basic knowledge about the native platform they are writing for, without it they will be lost. It would never even pop to my mind that foreground services is what i need, and they are not supported in flutter, if i firstly didn't do the research in android documentation.
June 02, 2021 at 09:07PM by incIouds
https://ift.tt/3iccUux
Is flutter really more than just ui framework?
Hi guys,I was really excited about the flutter whan i read about it the first time, there were opinions all over the internet that it should speed up development process significantly and make life easier for mobile developers. And it really was great, but now i think i was looking only at the surface. Unfrotunatately, i am not the android developer, i have backend and web experience mostly, and i think that's why i missed the important piece - flutter lacks of some key native features. I got to know it only after couple months of learning flutter and developing my mobile application. Here are two examples: - flutter has weak support for background services(android) - flutter has no support at all for foreground services with all the functionality related, like navigating to given route on notification clicked(android)I can tell you that most location services use foreground services. You want to write location service with flutter? Here you have, nice google map plugin. Foreground service to send location when app is in background? Ops... Houston we have a problem.Of course there are some workarounds to create foreground services in android and call it from flutter, but they are ugly, error prone and just lets be honest - flutter turns out to be UI framework mainly and therefore should not be marketed as a mobile framework. And it does not even aspire to be it. Flutter team is focused on expansion to other platforms instead of focusing on what they should yet implement on mobile platform, to make flutter complete mobile framework, not just UI framework. Yes, flutter is mobile framework if you want to create nothing more than simple hello world app. For more complex cases, be prepared for writing a lot of method channel code as a proxy to native platform code, or no solution at all. And please stop misleading(also on reddit) other people that they will be good with flutter only. No they won't, unless nice hello world is all they would like to get from flutter. They should have at least basic knowledge about the native platform they are writing for, without it they will be lost. It would never even pop to my mind that foreground services is what i need, and they are not supported in flutter, if i firstly didn't do the research in android documentation.
June 02, 2021 at 09:07PM by incIouds
https://ift.tt/3iccUux
reddit
Is flutter really more than just ui framework?
Hi guys, I was really excited about the flutter whan i read about it the first time, there were opinions all over the internet that it should...
New post on Flutter Dev Google group:
Splash Screen problems
Hello, I would like someone to help me with the splash screen, because I have many problems. What happens is that I create a design with a gradient that I want to put as my splash screen, I have created it with the dimensions that should be used for android, according to what it says in this
June 02, 2021 at 10:28PM by Cristian Arias
https://ift.tt/3g8n6l2
Splash Screen problems
Hello, I would like someone to help me with the splash screen, because I have many problems. What happens is that I create a design with a gradient that I want to put as my splash screen, I have created it with the dimensions that should be used for android, according to what it says in this
June 02, 2021 at 10:28PM by Cristian Arias
https://ift.tt/3g8n6l2
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:
VS Code Problems since upgrading to Flutter 2.2
I've lately been having problems with VS Code since upgrading to Flutter 2.2. VS Code works fine until I run on an iOS simulator after a couple of hot reloads VS Code's IntelliSense seems to completely die. I can't search for references, I can't command click on anything, auto-complete stops, error detection stops.Has anyone experienced anything similar? Perhaps more importantly does anyone know how to access relevant logs to the flutter plugin that I could track down what is going on? I've tried restarting the dart analysis server but that doesn't seem to do anything.
June 02, 2021 at 10:37PM by blueclawsoftware
https://ift.tt/3vPnc7R
VS Code Problems since upgrading to Flutter 2.2
I've lately been having problems with VS Code since upgrading to Flutter 2.2. VS Code works fine until I run on an iOS simulator after a couple of hot reloads VS Code's IntelliSense seems to completely die. I can't search for references, I can't command click on anything, auto-complete stops, error detection stops.Has anyone experienced anything similar? Perhaps more importantly does anyone know how to access relevant logs to the flutter plugin that I could track down what is going on? I've tried restarting the dart analysis server but that doesn't seem to do anything.
June 02, 2021 at 10:37PM by blueclawsoftware
https://ift.tt/3vPnc7R
reddit
VS Code Problems since upgrading to Flutter 2.2
I've lately been having problems with VS Code since upgrading to Flutter 2.2. VS Code works fine until I run on an iOS simulator after a couple of...
New post on /r/flutterdev subreddit:
Are there any good Flutter libraries/packages that bootstrap some essential app features?
Hello,I am very lazy, and I am wondering if there are any Flutter libraries/packages that allow me to bootstrap some essential elements of a mobile app, stuff like registration/authentication/account-recovery, location settings, etc.I'm new to Flutter so pardon my ignorance of the ecosystem.Thanks in advance!
June 02, 2021 at 10:21PM by imjewishOOF
https://ift.tt/3vOfxXn
Are there any good Flutter libraries/packages that bootstrap some essential app features?
Hello,I am very lazy, and I am wondering if there are any Flutter libraries/packages that allow me to bootstrap some essential elements of a mobile app, stuff like registration/authentication/account-recovery, location settings, etc.I'm new to Flutter so pardon my ignorance of the ecosystem.Thanks in advance!
June 02, 2021 at 10:21PM by imjewishOOF
https://ift.tt/3vOfxXn
reddit
Are there any good Flutter libraries/packages that bootstrap some...
Hello, I am very lazy, and I am wondering if there are any Flutter libraries/packages that allow me to bootstrap some essential elements of a...