Questions tagged [flutter-desktop]

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.

352 questions
0
votes
1 answer

Keyboard navigation between text fields & dropdown choices by pressing enter key not only tab key in Flutter web & desktop?

I have a big input form that is consist of textfields & dropdown choices inside table I want to navigate between them with pressing key enter
Abdelrahman Tareq
  • 1,874
  • 3
  • 17
  • 32
0
votes
1 answer

Flutter: Submit TextFormField on Enter

I'm working on a desktop application for Windows with Flutter. I want to listen to keyboard keys. I made a Login page and it has two TextFormFields, (one for Username and the other for Password). When I press the 'enter' key on the keyboard, I want…
0
votes
0 answers

What is the right gradient to use to achieve the inner shadow effect of the native macOS graphical time picker with Flutter CustomPainter?

I'm recreating the graphical macOS time picker for macos_ui and I'm having some difficulty painting the inner shadow gradient correctly. This shadow, along with the gradient of the clock's border, help give the clock a sort of 3D look. Here is a…
0
votes
1 answer

Writing native C++ code for Windows (Desktop) app in flutter

How can I write native code (C++ on Windows and Objective-C on macOS) in flutter for desktop app like this in flutter docs for android and iOS platforms? Can somebody show me a sample on GitHub repository or video on YouTube?
Mohamadamin
  • 564
  • 5
  • 16
0
votes
1 answer

How can I open windows applications like notepad and paint using flutter windows desktop?

How can I open windows applications from my app, like notepad and paint using flutter windows? Container( height: 60, width: 120, alignment: Alignment.center, decoration:…
0
votes
1 answer

DioError (DioError [DioErrorType.other]: Bad state: Can't finalize a finalized MultipartFile

I am attempting to upload multiple files using Dio, upon the request being sent I am receiving the error: DioError (DioError [DioErrorType.other]: Bad state: Can't finalize a finalized MultipartFile. My request is as follows: Future
Drew
  • 33
  • 6
0
votes
0 answers

remove all value of controller in flutter from memory with getx packages

I'm working on flutter desktop application , where I need to delete all variables when move from page to another so I'm using getx packages, so in the home page the app use about 138mb of memory when I navigate to second page it use about 380mb of…
Anas-Qasem
  • 185
  • 10
0
votes
2 answers

Doesn't Singlechildscrollview() work on AppBar/SliverAppBar's property bottom:PrefferedSize, in flutter?

I'm using the bottom property of SliverAppBar in flutter to make it like Youtube's App Bar. AS we know that the second row of the app bar has a horizontal scroll view. I've tried to implement sinlechildscrollview in the bottom property, but the…
M Nouman
  • 437
  • 1
  • 5
  • 22
0
votes
2 answers

How to make flutter desktop app goes fullscreen when move to top of the screen

When I move my app to the top of the screen I want to make it look like this and then file explorer goes fullscreen
Somxhai
  • 25
  • 1
  • 4
0
votes
1 answer

Flutter cannot find SQFLite databases path in Ubuntu Linux

I am working on a notes app and using VS code in Ubuntu 20.04 I have integrated the SQFLite and path plugins but I am getting the exception MissingPluginException (MissingPluginException(No implementation found for method getDatabasesPath on channel…
0
votes
1 answer

Flutter Vertical and Horizontal overflow issue

I'm trying to create a fully responsive design. I'm facing the overflow issue when I resize my screen from bottom to top(Vertically) or top to bottom in desktop view. And I face horizontal responsiveness overflow from right and bottom sides, if I…
M Nouman
  • 437
  • 1
  • 5
  • 22
0
votes
1 answer

change windows language by dart

I have some textFields and want to change the language input when the user came to write its data. In my example, I want the user to write his/her name in two different languages. so it's not friendly to change each time when the user wants to write…
Ara Hussein
  • 270
  • 1
  • 13
0
votes
1 answer

How to Add Horizontal Scrollbar and Vertical Scrollbar to a Paginated Data Table in Flutter for Desktop

Container( height: MediaQuery.of(context).size.height, width: 2000, // This padding value of 200 is not auto calculated, it is based on where the table ends, // If table…
0
votes
2 answers

New version of flutter giving bunch of errors in my previous code

I have set my development environment on another system with everything new. Latest android studio version, flutter, and everything. Now I am trying to run my previous code but the whole code is full of errors. The code was working perfectly fine on…
Dev94
  • 757
  • 6
  • 24
0
votes
0 answers

Flutter Desktop App (MacOS) - Unable to find SQLITE DB and creates empty db in MacOS /Users//Documents directory

There's some very odd problems when using flutter for MacOs apps. I'm using the following Database initialisation: _initDatabase() async { Directory dbDirectory = await getApplicationDocumentsDirectory(); String path = join(dbDirectory.path,…
houba
  • 496
  • 7
  • 20