Dedicated to questions about Flutter desktop implementation. Use (flutter) instead for questions about flutter in general, or (flutter-web) if question are about issues using flutter to design web applications.
Questions tagged [flutter-desktop]
352 questions
0
votes
1 answer
How to run process with no window
Process.run(
'adb',
['devices],
runInShell: true,
);
When I run the app in android studio, no black window,
But when I double-click ***.exe to run the app, it will see the black window

jchenx2
- 13
- 2
0
votes
1 answer
Flutter PhpMyAdmin Fetch Data
I wanna fetch data from PhpMyAdmin. But i am facing one issue. I can see in the body my data. I am sharing my source code. Thx for helping. And I am working with flutter desktop.
import 'dart:convert';
import…
user16893569
0
votes
1 answer
Flutter Post Data To Json Api
I have a json api. Like this 'https://myapiurl.com/api.json'. I can read data in this api and I can fetch data in my app. But i can't post data in the my api. Here my source code.
I am fetching data this way.
Future
- > getStock() async…
user16893569
0
votes
1 answer
Undefined reference while compiling Flutter app on Linux
I built a plugin which uses Dart FFI and a shared lib and published to pub.dev. Whenever I try using the plugin in my app, it always fails with a file not found error and I don't know where the error is coming from.
Error:
[ ] [ ]…

Frank nike
- 330
- 5
- 12
0
votes
1 answer
How to remove brackets [ ] from List when going to display as a String and add it to a text element for display using Flutter
I want to go through my List of Strings, and add it to a text element for display, but I want to remove the []. I am using multiselect: ^0.0.4 package.
If the List is.
['S', 'M', 'L', 'XL']
I want to show in the text as - S,M
CODE :-
List…

Dren
- 21
- 9
0
votes
1 answer
Flutter desktoop Linux Appliaction not working After installed it from snapstore(ubuntu store)
I have developed the Flutter Linux desktop application. In debugging mode application working fine. The application was also published on snapcraft(ubuntu store) but when we installed this application from the store , the application was not listed…

Nikhil Deshmukh
- 11
- 2
0
votes
1 answer
ESC/POS printer with flutter desktop application?
Folks we are developing Flutter windows desktop application it is the Point of sale application in this main feature is printing we can find lots of resources on ESC/pos topic in the android flutter application or even through method channel we can…

M.Yogeshwaran
- 1,419
- 4
- 22
- 48
0
votes
1 answer
Waiting for a stream to complete before the function returns a value
Future
- > getVideo(var _client, var _videofolder) async {
final pathContext = path.Context(style: path.Style.windows);
var tempDir = await getTemporaryDirectory();
String tempPath = tempDir.path;
print(tempPath);
final filePath…

Carrick
- 121
- 1
- 7
0
votes
1 answer
How to publish a desktop application to another computer?
I wrote the first desktop application in Flutter, how can I get the things I need to run this application on another computer?
I found the Release folder (build\windows\runner\Release) with the following contents:
Content
But when I try to run the…

Newbie
- 47
- 1
- 5
0
votes
1 answer
How can i check and retrieve empty double value using Flutter
I am working with flutter desktop project, i want to retrieve some double values but when proceed some field as an empty field and try to retrieve the data and i got an error to fill up all the TextField i have. How can i check those TextField as an…

Dren
- 21
- 9
0
votes
1 answer
FlutterViewController setInitialRoute for windows
I am trying to Navigate to a specific route from Native flutter Pugin.
I was able to do that in swift for iOS:
let extVC = FlutterViewController()
extVC.setInitialRoute(routerName)
window?.rootViewController =…

Ebram
- 1,042
- 1
- 13
- 26
0
votes
0 answers
Flutter web Vrouter routing navigate back but path getting erased automatically?
I'm using VRouter for flutter web routing.
When I click on a button to go to next route it shows the new route for a brief moment and then it's vanished. You can see in gif below it comes for a second and then goes away..
Problem is that due to this…

Akshat Tamrakar
- 2,193
- 2
- 13
- 21
0
votes
1 answer
How to connect window device with android studio / vscode running on virtual machine for flutter desktop application?
I am trying to develop a window application using flutter. My host os is linux. So, I have installed virtualbox and installed windows in that and changed the network adapter to bridged network. Now, I am able to ping the window machine using windows…

Sumit Kumar
- 678
- 4
- 19
0
votes
1 answer
Flutter windows desktop application compattibility
Can flutter desktop application run on any windows pc irrespective of its properties. I am trying to run flutter desktop application on x86 windows but it shows error "This application can't run on this pc, check with the software publisher".
Can…

Dev94
- 757
- 6
- 24
0
votes
1 answer
How to do keypress like Java Robot in Flutter Desktop?
I am stuck with my flutter desktop application development. I'm looking for features like Java Robot for send keypress from my Flutter desktop application. Unfortunately, I did not find any Flutter desktop plugin or core functionality in…

Akash khan
- 861
- 13
- 25