flutter-web Questions
5
For mobile apps connectivity plugin is working fine.
import 'package:connectivity/connectivity.dart';
var connectivityResult = await (Connectivity().checkConnectivity());
if (connectivityResult =...
Kiger asked 28/12, 2019 at 7:3
3
I am creating an application in Flutter Web that needs to collect payment information to create subscription charges. My plan was to use Stripe to do this, however, after making all the necessary m...
Shinto asked 13/6, 2020 at 23:58
1
In my flutter web application browser address bar is not hiding on scroll. Does flutter supports this feature?
Dolorisdolorita asked 20/7, 2020 at 9:8
2
Solved
I need to use camera in my web application. so i want if user denied using camera on his/her browser i ask it again to allow camera permission.
this is my code
import 'package:universal_html/htm...
Exieexigency asked 17/4, 2020 at 15:34
0
We are trying to run our Flutter app in web. The app runs, but not everything is working as aspected. We get this error on Chrome:
Refused to execute script from 'http://localhost:8888/main.js' bec...
Repose asked 26/10, 2022 at 16:32
1
I want to add google in app purchases in my flutter web and desktop project.
is there any way that we can do that.
Compel asked 9/4, 2021 at 12:28
5
I'm developing a web app using Flutter Web and RESTful API for backend.
So, I'm trying the fetch the data from the api, serialize it by using Flutter Models, then return the result.
The Problem is,...
Mafaldamafeking asked 15/3, 2021 at 0:49
0
I am building a learning platform with text, images and video content on flutter web. How can I prevent screenshots and screen recordings being taken from my site/app?
All the post on the internet ...
Bassorilievo asked 11/10, 2022 at 3:59
2
Solved
In the Flutter web apps, there is no default functionality which makes text and images in the app selectable.
Is there a way to enable selection functionality for text/image on web?
I did check Sel...
Suture asked 20/7, 2022 at 20:19
4
I Updated my project to flutter 2.0.2 without null safety. Now I am trying to lunch on web (chrome). When app is launch in splash page I loaded a svg image. The svg is loaded on chrome but in termi...
Noneffective asked 16/3, 2021 at 6:17
1
I have this problem only when using Flutter Web version. 2.8 and 2.10 , when I tried using Flutter 2.5.3 and other previous version the problem doesn't happen.
Example Widget inside Column:
Selecta...
Electrodeposit asked 9/2, 2022 at 16:50
4
Solved
I'm creating a Flutter Web app. When it is starting up and downloading the Flutter content the tab in the browser displays the project name instead of the app name. This looks ugly.
My project n...
Greggrega asked 20/4, 2020 at 4:5
4
Solved
There are Android and ios splash screens in their respective folder which we can change. Is there any splash screen for flutter web? I see a white screen before web page is loaded. how can we chang...
Philemon asked 25/12, 2019 at 18:7
1
How do I get the mouse cursor to become SystemMouseCursors.grabbing while a draggable is mid-flight?
This is what I have so far.
return Draggable(
data: data,
onDragCompleted: () {
setState(() {...
Anachronistic asked 14/2, 2021 at 12:7
2
Solved
I recently made a flutter application and now I want to get a web release, but when I run flutter build web and upload stored files in {root}/build/web on the host, everything is showing on chrome ...
Shavers asked 1/8, 2022 at 5:36
3
I am trying to implement Flutter web url navigation in my application. When I am trying to open http://localhost:7357/privacy-policy directly it is opening fine on my local machine
but when I am tr...
Wallaby asked 3/4, 2022 at 20:40
1
I'm using Navigation 2 and setUrlStrategy(PathUrlStrategy());
I added WillPopScope but the onWillPop is not called when clicking the browser's back button.
Widget build(context) {
return WillPopSc...
Lidstone asked 29/4, 2021 at 22:4
0
I am writing an application that should support searching some content. For this I implemented a search TextField. Now I would like to focus said TextField when the key combination ctrl + F is pres...
Dank asked 12/9, 2022 at 11:47
2
I am developing a FLutter web app and using Firebase Authentication with email and password login for signing in users
await FirebaseAuth.instance
.signInWithEmailAndPassword(email: email, passwor...
Cytolysis asked 26/8, 2022 at 17:37
5
Solved
I have to add new product as well as edit existing product in one screen . so I have Used didchangedependencies method by assigning the initial values to update a screen something gone wrong in my ...
Wellthoughtof asked 7/7, 2021 at 15:4
3
My flutter web initial page load is slow(10-15 secs),
Found that large amount of time is spent in downloading "https://unpkg.com/[email protected]/bin/canvaskit.wasm" which is around...
Goby asked 6/5, 2021 at 12:7
2
I have backend code written in golang and fronted using flutter web. I am trying to serve flutter web via chi router and everything seems to work fine but I get the following errors in browser cons...
Dedal asked 23/8, 2022 at 17:39
2
Solved
I am using SelectableText widget in my website. When I select a text with my mouse, the only way to unselect it is to click on the SelectableText.
How can I unselect text when I click anywhere on t...
Landonlandor asked 12/11, 2021 at 15:21
1
I'm currently working on updating a Flutter Web app to support sharing pages via URLs. I currently have a screen that uses a TabBar, and shows different views based on the selected tab. I want to b...
Kiele asked 14/2, 2022 at 17:53
2
I just built an example Flutter app and I wanted to deploy it as an web application. Flutter generates a single file called main.dart.js. However, using a few dialogs, animations and so on, this js...
Insurmountable asked 28/9, 2021 at 7:37
© 2022 - 2024 — McMap. All rights reserved.