flutter-web Questions

3

I have been trying to integrate a web based product tour/on-boarding plugin which will help a new user to understand the application without any external intervention. I cam across this plugin : ht...

3

I'm trying to play YouTube Videos in my Flutter Web Application, but with the default VideoPlayer you need the YouTube src path (...googlevideos.com/...), which I couldn't get right. I did some goo...
Truax asked 25/2, 2022 at 19:39

4

When I configure a Text widget with a maximum of 1 line and an overflow set to ellipsis, the widget shows correctly. Text( "Last summer, I was working on a prototype for an AR app that woul...
Flex asked 29/2, 2020 at 17:51

4

I get the error below while running the Flutter app on the Chrome web browser. I picked an Image from the gallery: Future getImage() async { try { final image = await ImagePicker().pickImage(sou...
Sparteine asked 18/8, 2022 at 11:40

2

Solved

If I do this, for example: FutureBuilder( initialData: null, future: compute(expensiveParsingOperation, data), builder: (context, snapshot) { if(!snapshot.hasData){ // This doesn't spin (froz...
Sawyor asked 13/1, 2020 at 7:7

7

Solved

I am using flutter web and firebase authentication to build a web app. For that 1. Created Firebase app with Google signin as one of the sign in methods. 2. Added the dependencies as given in https...

11

Solved

Note: It turns out that this had nothing to do with flutter and everything to do with the fact that I had set the API gateway to a Lambda Proxy I am trying to hit an API endpoint from a Flutter web...
Cathode asked 12/2, 2020 at 15:26

2

Solved

I am wondering if there is any way to create and read cookies in Flutter, similar to document.cookie in Javascript. It seems logical since Flutter Web becomes Javascript when built.
Surfactant asked 24/4, 2022 at 14:45

4

I'm new to flutter development. When I try to create my application in local using flutter is working fine. But if I try to import other repo after resolving the dependencies, still it's not workin...
Sleigh asked 26/6, 2020 at 9:43

4

Solved

I am trying to add pdf view in my web page (flutter web).. here is part of the code ui.platformViewRegistry.registerViewFactory( 'hello-world-html', (int viewId) => html.IFrameElement() ..wid...
Glyconeogenesis asked 9/11, 2020 at 8:43

3

Solved

I am new to flutter. So, I want to know whether I can use selenium webdriver/java to automate a flutter web application. I have used java / cucumber to automate web applications and used page objec...
Cowey asked 10/3, 2021 at 12:11

6

Solved

I was taking MDC101 flutter code lab. I cloned the starter project from the git repository as per the instructions but after clonning done, I executed flutter pub get and it gave me the following e...
Celaeno asked 10/2, 2021 at 5:59

3

I am creating a WebView of this website https://nearxt.com/ which asks for location when opened but when i use this link to create a webview in flutter then it can not take location i have also def...

1

I'm using package:dio in a Flutter web application. Whenever I send a POST request, however, it gets changed into an OPTIONS request. The function that makes the API request looks like this: Future...
Drud asked 10/1, 2022 at 14:52

4

Solved

Flutter web project works smoothly when running directly into chrome from IDE, but after calling flutter build web, and hosting the built web app is not opening(only a blank page) and showing this ...
Doodle asked 4/2, 2021 at 5:26

6

How can I get the current URL in a Flutter Web App on which the user of the web app currently is? For example: app1.website.com app2.website.com According to the result of the current URL on whi...
Manumission asked 17/5, 2019 at 13:19

9

issue The method 'play' isn't defined for the type 'AudioCache'. import 'package:flutter/material.dart'; import 'package:audioplayers/src/audio_cache.dart'; void main() { runApp(XylophoneApp()); } ...
Hughhughes asked 17/6, 2022 at 5:14

6

Solved

I am thinking of developing an e-commerce app on flutter web, using Navigator 2.0, maybe beamer. I would like people to be able to share flutter web links and show previews on social networks. Is t...
Aurilia asked 6/10, 2021 at 18:42

6

Solved

I am working on flutter-web, I would like to do file operations(read and write) in flutter-web. For Android and IOS, I was using path_provider dependency. But in Flutter-web, it is not supported. C...
Ozonosphere asked 24/7, 2019 at 12:11

3

Solved

Is there a way of making a flutter web app enter fullscreen mode (hide addressbar, tabsbar and taskbar)? Or is there a way of programmatically pressing F11? I've tried... @override void dispose() {...
Fischer asked 5/10, 2020 at 16:39

2

To support a single environment, the following code works fine in my flutter web index.html <html> ... <body> <script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-...
Deianira asked 17/3, 2022 at 4:25

18

Solved

I updated My flutter Version from 1.22 to 2.0. There are some errors in Flutter Doctor. How Could I solve this. That happen Afer Updated my Flutter Version. I am Using Android Studion 4.1.2, Ubuntu...
Moline asked 15/3, 2021 at 3:9

4

Solved

I am deploying a Flutter Web App on Firebase Hosting. And a Flutter App on Android. To use App Links that redirect to my Android application, I need to verify the App Links serving the file assetli...
Finegrained asked 27/1, 2022 at 20:28

10

I'm building a web-app which needs to have a route that gets a post ID and then it will fetch the post using the ID. How can I have URL arguments let's say /post/:id so id is the argument My app lo...
Equatorial asked 19/8, 2019 at 8:20

3

I'm using flutter and GetX, so i'm implementing Obx inside my code. I have 3 files: questionnaire.dart questionnnaire_controller.dart popup.dart Inside the popup.dart I have the layout of the popup...
Fissile asked 8/2, 2021 at 11:4

© 2022 - 2024 — McMap. All rights reserved.