Questions tagged [flutter-windows]

Use this tag for questions related to windows-specific Flutter desktop questions, in conjunction with [flutter]. For more general Flutter desktop questions, use [flutter-desktop] and, for general Flutter questions, use only [flutter].

176 questions
0
votes
0 answers

Windows support of presentation display

i already implement about presentation/customer display in Android using this package https://pub.dev/packages/presentation_displays but that package only support Android, and now i want to support on Windows platform too is there any…
0
votes
0 answers

Navigate among Search List Item with keys in flutter desktop app

In my application i want to navigate among search items using up down keys in flutter desktop app, For search drop down functionality i use flutter_typeahead: ^4.3.7 plugin but i am unable to navigate with keys. TypeAheadField( direction:…
0
votes
0 answers

Flutter - build release .exe with embedded dll

I'm tring to build a simple application in dart/flutter for windows. After flutter build windows --release it creates a .exe with all .dll files that application uses. Obviously when I copy and past the .exe in another folder the .exe does't…
0
votes
3 answers

How can I properly setup Flutter on Windows?

I'm having issues in my new flutter installation tried few things but nothing worked. This is the view of my flutter doctor output: [!] Android toolchain - develop for Android devices (Android SDK version 33.0.2) • Android SDK at C:\Users\My…
Daisy
  • 1
  • 2
0
votes
0 answers

How to access console logs of flutter app packaged as msix?

Background I used msix flutter to package my app. It installs without any problems but immediately fails after starting it on Windows 11 (on Windows 10 everything works fine) without any error message. Problem I am therefore trying to get a hold of…
Florian
  • 11
  • 2
0
votes
0 answers

File content watcher Flutter

Is there a way to listen to the file content if it is change. Like for example I have a text with a message inside. I want to know if that message is change or if the file content is modified. I'm FileSystemEntity watch but it doesn't seem to have…
Aquiko
  • 142
  • 1
  • 13
0
votes
0 answers

How to use fluuter admob in flutter desktop app

I have a flutter desktop app i want to show ads how can i do it https://pub.dev/packages/crecexdiez_advertising`is this package good?`
0
votes
2 answers

Disable default right click on web in flutter

I'm trying to use my own showMenu when user right click with the mouse on web, windows, macOS and long press on android and iOS. Long press on android and iOS is working and right click on Windows and macOS is working but having issue to prevent…
Rohan Jariwala
  • 1,564
  • 2
  • 7
  • 24
0
votes
0 answers

How to uninstall flutter MacOS, Windows and Linux debug build from my laptop like in Android and iOS from smartphone?

I have done some searching regarding this but did not find any solution yet thats why i am asking. Normally when ever we uninstall application from Mobile phone, all data clears and event if we don't want to unistall the application, we have option…
0
votes
0 answers

Build flutter release version for Windows 8

I am using a Windows 10 PC and need to create a release version of my flutter application for Windows 8. However, flutter build windows builds an executable for the Windows version of the PC, you are using, which would be Windows 10 in my case.…
0
votes
2 answers

Flutter Windows Error ( Exception: Build process failed. )

I was working on a project for school management app and it worked perfect on android and windows but after I added firebase for the project it did not build windows again here is the error that on vs code terminal Launching lib\main.dart on Windows…
0
votes
0 answers

I am using window system info but i got some error.how can i solve this

It is error This is my code.How cam i solve this.Thanks you for your answering. static List? networkAdapterInfo; @override void initState() { // TODO: implement initState getNetworkAdapterInfo(); super.initState(); …
0
votes
0 answers

Flutter build for Windows Issue

Im buiding this app with flutter which gone run in all platforms, however i ran into an issue with building it for windows. ofc it does the build no issue there, but after the first lunch of the app, if u close it with X, i cant open it again , i…
SkayJs
  • 1
0
votes
0 answers

Flutter on Windows: Firebase Authentication

I am trying to use Google Sign In authentication method on my flutter Windows app through firebase. The problem is, that I can't find any configuration file about it in firebase console (like on Android: google-services.json, or iOS:…
0
votes
1 answer

Flutter Search Bar with ListView with Checkboxes

I want to create a widget like this. This contains the Textfield, Once type something in the field, It will be sorting the list and show the results below the field. The result list shown below can also have a checkbox field to select multiple items…