I want to use TradingView's webView in flutter desktop project. But unfortunately webView not support in desktop version.
Is there any way to use webView in app?
Related
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?
Is it possible to use TradingView charts within a Flutter application? Whether it's a mobile or web version?
You can use the WebView Package for displaying anything from the web, this can do the job.
I was trying out flutter platform to create a multipage website with android and ios responsiveness using single codebase for my flutter app. I've already tried some single page samples in flutter which are following,
Flutter web, android & ios using Stacked architecture & Responsive_builder
Flutter web, android & ios using MVVM & Responsive_Framework
Flutter web, android & ios using simple Getx package.
All of them are working fine, but what I want is to collect your opinions who have already created a production ready app in flutter web.
Should we consider using Navigator 2.0 for flutter web responsiveness?
Does responsive_framework package work fine if we have complex designs because I'm not confident about the font size and styling application using it?
Can we use any other app architecture, responsive package, design pattern or any other concepts for multipage production level use cases.
Any suggestions would be appreciated.
Thanks.
I'm developing a desktop app with flutter, and I gotta get the metadata information.
I've been trying to use flutter_ffmpeg, but It does not have support to flutter desktop. Is there another way to do that for flutter desktop?
Is it possible to integrate PWA apps into flutter applications like displaying web applications through webview in flutter. Can we display the complete PWA app inside a flutter application?
When you create flutter web application it automatically creates a PWA and you can notice it will you launch the website on the phone.
And inside webview if you load a website it will load. In this case it does not matter whether it is PWA .
PWA a just extra functionality that creates a wrapper to install the app in different platform
Flutter supports deploying the web version as a PWA, the details are in their documentation, search for A Progressive Web Application built with Flutter