Skip to main content
Filter by
Sorted by
Tagged with
5 votes
2 answers
4k views

On Flutter desktop , I want to use multi monitors. Like when application started , I will see all monitors and click one of them ,then application will start the monitor that I selected. How can I do ...
Vysl Shn's user avatar
  • 103
3 votes
1 answer
5k views

I am a Flutter developer. I have build one windows 64-bit exe file. It's working perfectly in 64-bit windows OS but is it possible to build a 32-bit exe file through Flutter? Please assist me. Thank ...
Mohit Raval's user avatar
0 votes
1 answer
362 views

Hey everyone is there possible to define multi version for flutter application for different devices, for example build an application with version of 1.1.1 for android devices and version of 1.3.1 ...
Saeed Ghasemi's user avatar
5 votes
3 answers
4k views

Some windows apps like telegram, can open with custom schema url by browser. When I install telegram on my windows pc and enter tg:// in browser, It can maximize telegram app or run telegram app if it ...
amir_a14's user avatar
  • 2,171
12 votes
3 answers
13k views

I am building a desktop application using flutter where I need to play audio files from local storage and for this I am using just_audio flutter package since it supports Windows. But I Couldn't find ...
Sadikul Haque Sadi's user avatar
3 votes
3 answers
4k views

I'm new to flutter and making a desktop application with flutter. Now I need to load and play audio files but found that the audio player packages don't support desktop software in windows. So if ...
Sadikul Haque Sadi's user avatar
0 votes
1 answer
3k views

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 ...
M.Yogeshwaran's user avatar
2 votes
2 answers
417 views

I have a relatively complex Listview setup, where one Listview acts as a scrolling parent of a horizontal Listview, which acts as a parent to a third vertical Listview. Here is an image of the general ...
Cody Moore's user avatar
11 votes
2 answers
3k views

In my Flutter project for Windows, I want to run some .exe files that I want to embed in my project, instead of copying/pasting them by hand in the correct location. So I tried to add the .exe files ...
matteoh's user avatar
  • 3,710
0 votes
1 answer
922 views

I have an issue https://github.com/flutter/flutter/issues/86712 but not helpful for me and i can not working well with it. So i hope that can handle onChanged event it same with onFieldSubmitted that ...
Thanh Le Dinh Hoai's user avatar
1 vote
1 answer
1k views

I created a multi image selector form field widget to use within a form with validation and so on, and it works fine; however, when I select 8 or more images from a file picker at once and add them to ...
Arin Faraj's user avatar
0 votes
1 answer
366 views

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(...
Ebram's user avatar
  • 1,102
8 votes
3 answers
12k views

I've made a simple flutter app for windows, when I run it shows the default Titlebar that windows has. How can I remove it ??
Manan Domadiya's user avatar
3 votes
0 answers
487 views

I have a simple TextField available Here. It works as expected on the web, but when I run the app on Windows desktop, the TextField inputs the character twice. For example, when I typed x and 1 I ...
Joshua Erinosho's user avatar
10 votes
2 answers
4k views

How do you implement Google OAuth2 or Microsoft (Azure) OAuth2 login on Flutter Desktop?
Neal Soni's user avatar
  • 704
5 votes
1 answer
410 views

I'm trying to create a Flutter plugin which wraps some C++ code. That code has multiple dependencies, so steps need to be taken to provide those dependencies to the C++ build system (currently based ...
Ken's user avatar
  • 723
10 votes
1 answer
6k views

On my Windows App ( The interface looks like this: https://i.sstatic.net/SibAC.png ) When I focused to Input-1, and I press Tab key on keyboard, the primary focus will focus to Input-3. Is there any ...
TienVD's user avatar
  • 123
0 votes
0 answers
437 views

I try to upload image to Firebase local storage emulator from flutter desktop software. I'm using file_selector_windows plugin for file selection. void _openImageFile() async { final typeGroup = ...
Slate and Chalk's user avatar
0 votes
1 answer
2k views

I have been using flutter windows successfully to run my app. However, recently I downloaded Android Studio and all of a sudden my flutter windows didn't work. It threw out error as following: ...
Alec's user avatar
  • 1
0 votes
1 answer
403 views

I have a barcode scanner which automatically outputs the barcode into whichever app you have open in the USB attached windows PC, if it can handle it. For example if I have chrome open, I click the ...
Fred Johnson's user avatar
  • 2,705
32 votes
8 answers
39k views

I have flutter application which uses different webview plugin for each platform(mobile, web, window). Though I am able to import platform base on web and mobile, I am not able to import for windows. ...
KonTash's user avatar
  • 430
0 votes
0 answers
609 views

I have tried using mailer to send email but I want to first open the mail app and then ataching a file into it. So I have been using flutter windows package url launcher but I could only seem to add a ...
Andrew Klement Winarto's user avatar
1 vote
0 answers
223 views

I want my flutter windows app to send a text file by opening the default mail app in my windows machine and then attaching the file. I have been using URL launcher but I can't seem to find how to ...
Andrew Klement Winarto's user avatar
5 votes
0 answers
2k views

I know how to make a native splash screen for Android, iOS, and Web, as it is covered in Flutter official documentation and in this package. So how to make a native splash screen when deploying for ...
OroshiX's user avatar
  • 714
5 votes
3 answers
9k views

The title says it all. There is nearly no documentation on flutter's website that shows how to invoke a method in windows native code via a method channel. But I found an issue on the flutter's github ...
shivanshPurple's user avatar
18 votes
24 answers
35k views

I am getting this error while building for windows C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(238,5): error MSB8066: Custom ...
aihamhasan's user avatar
2 votes
4 answers
8k views

The app works with android but does not work with desktop. This is the error I get: [ERROR:flutter/lib/ui/ui_dart_state.cc(186)] Unhandled Exception: MissingPluginException(No implementation fou nd ...
Ahmed Hany's user avatar
4 votes
2 answers
2k views

I'm trying to run a command line using dart's Process.run Here is my code var result = await Process.run('axmldec', [ '-o','C:/test/output.xml' , 'C:/test/AndroidManifest.xml' ]); thought the ...
MSaudi's user avatar
  • 4,692
0 votes
3 answers
3k views

Hello I hope you are well. I have a problem when compiling my Flutter application for the Windows platform. Indeed when I launch my Flutter application by pressing the "Run" button of VScode ...
Steeven Delucis's user avatar
3 votes
2 answers
4k views

this is how I change the title but can't change the icon. void main() { WidgetsFlutterBinding.ensureInitialized(); if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) { ...
Anurag kanakapalli's user avatar
2 votes
1 answer
2k views

One hour ago I discovered a TextField strange behavior when I place it inside AlertDialog it does not allow typing space Otherwise it behaves normally here is my code: //================Flutter doctor ...
aym1781969's user avatar
0 votes
0 answers
188 views

I don't know if this is a bug in flutter or not but a week ago i upgraded to flutter 2.0.2 and discovered that TextField does not allow space? flutter doctor -v [√] Flutter (Channel stable, 2.0.2, on ...
aym1781969's user avatar
1 vote
2 answers
780 views

I've just set up my Windows for flutter development, So I downloaded flutter SDK, and placed it in my directory. After, I set up my path variable to work with flutter in my command line. I also set up ...
Swapnil Ghule's user avatar
1 vote
0 answers
1k views

i am trying to build and run a flutter app on windows but i get the following error Launching lib\main.dart on Windows in debug mode... lib\main.dart:1 CMake Error at CMakeLists.txt:1 (...
user15353015's user avatar
1 vote
0 answers
54 views

I want each DataRow of DataTable to have a Card look this this: our DataRow custom design I looked at the source code but I could not find anything
Soheil Qorbani's user avatar
1 vote
1 answer
3k views

I have a very simple problem, but did not find any solution. I wrote a flutter app for windows desktop. When I launch it, the name in the taskbar is shown as "A new Flutter project." How can ...
Markus's user avatar
  • 123
1 vote
1 answer
867 views

(Flutter -WindowsAPP - Flutter 1.26.0-1.0.pre • channel dev • https://github.com/flutter/flutter.git Framework • revision 63062a6443 (12 days ago) • 2020-12-13 23:19:13 +0800 Engine • revision ...
srt111's user avatar
  • 1,641
0 votes
1 answer
168 views

I am learning Flutter. The version I am using is Flutter 1.24.0-10.2.pre • channel dev. I am working on a project that could run on Windows 10 and Android. Therefore I use the dev channel. The project ...
Antony's user avatar
  • 333
1 vote
2 answers
2k views

I am creating a desktop application from an existing app. The command given in documentation is : flutter create . Running this command in the root of the project directory I am getting this error &...
S Sharanya Bharghavi's user avatar
5 votes
1 answer
4k views

I am working on a flutter application that connects to the MQTT client on the desktop it is opened on. I want to dynamically get the host name of the desktop and connect to it instead of the user ...
Amit Madgi's user avatar
30 votes
7 answers
24k views

I used the desktop flutter and I searched for a way to do that I couldn't find any articles about that, so I want to know how to change the launcher app icon for Windows desktop and also for Mac and ...
Ali Nour's user avatar
  • 473

1 2 3
4