Is it possible to display native component in Flutter? - flutter

If I want to show a native component such as Google Map, WebView, etc. in my Flutter app, Is it possible?
If not, May It have in future?

You have to create custom plugins for native. read the detail here.

Related

Is it possible to create a custom share sheet in Flutter?

I want to build this custom share sheet shown in the screenshot depending on the apps that are on the mobile, could anyone tell me if it's possible? screenshot
i am currently using flutter's share_plus package, but the share method summons the platform's share sheet, is it possible to customize my own share sheet and use it for both platforms android and ios?
Using the Flutter Availability package you can customize this by styling BottomSheet from scratch. Still, this package is only for Android devices. Unfortunately, iOS does not provide any API to get the installed APPs information.
I guess You'll have to work with a modalBottomSheet and https://pub.dev/packages/url_launcher
You can check if an application is installed, but this would work only for android Is there any way to identify that a particular application is installed in my android/ios device through flutter and dart?

LockScreen widget in Flutter?

There are some plugins like home_widget: ^0.1.6 that supports only HomeScreen Widgets.
Recently Apple launched LockScreen Widgets on iOS 16.
Is there any plugin for that? How do I implement that?
At the time of this writing, there are no known plugins that do that. There are two options moving forward, based on timeline for when you need this functionality:
Wait for someone to create a plugin that does this
Create the plugin yourself. Follow the Apple Docs and write a custom Flutter plugin (and then preferably publish it to pub.dev for others to benefit from as well).

Show notification even app is close flutter

I want my application to always show in a notification .It should be undismissable and it should be shown on notification bar always even app is off.
Try flutter_local_notifications plugin.
If you didn't find a plugin that satisfies your needs, just implement it on the native side.
Flutter is a UI framework. Use it as such.
Plugins wrap native capabilities and encapsulate them, but feel free to add native code that suits your needs.

Flutter drag and drop inside UI in desktop application

Talking about a desktop application now, not mobile or web.
Is it any widget in Flutter that will allow, for example, drag a folder, drop it in the application UI, and the app will read for example the path to that file or folder?
I have been reading about Draggable and DragTarget in Flutter, but i do think they are used for that purpose.
NOTE: it might not exist a widget for that purpose, so a strategy on how to do that in Flutter will also be appreciated.
Assuming you're talking about dragging from outside the application, it's not currently supported; Flutter #30719 would be the issue to watch/upvote.
Depending on the specific platform you might be able to implement it with a plugin in the short term (if you are familiar with native development on that platform), but that would likely be more work than contributing an implementation to Flutter itself.
Flutter has a dependency to support such behavior now. Check this link
https://pub.dev/packages/desktop_drop

Want suggestion to create UI in flutter using dart

Hi everyone I am new to the flutter framework. I am trying to implement UI as given in the image below. As of now consider this is a static UI component. Want to build this using a flutter widget only.
I wanted to know is there any way I can create this type of UI in a flutter. As I am new in flutter how long it will take to learn flutter so that I will be able to create this kind of UI.
I tried creating the same UI in a flutter as I am an angular developer so I thought if I can do it quickly. But I am not able to do it.
My main concern is
1)Is this feasible and if yes
2)How much time will require for new flutter developer
Your suggestion highly appreciated.
Thanks,