Click here to Skip to main content
15,879,535 members
Everything / Mobile Apps / Flutter

Flutter

Flutter

Great Reads

by Meshack Musundi
Implementing the MVVM pattern in Flutter using ScopedModel
by ThatsAlok
Let's explore the world of StateFulWidget with respect to Flutter
by ThatsAlok
Flutter ListView: A scrollable control for everyday need
by ThatsAlok
Let's explore Flutter Grid view and MediaQuery

Latest Articles

by Meshack Musundi
Implementing the MVVM pattern in Flutter using ScopedModel
by ThatsAlok
Object Oriented Programming in DART
by ThatsAlok
Let's explore Flutter Grid view and MediaQuery
by ThatsAlok
Flutter ListView: A scrollable control for everyday need

All Articles

Sort by Score

Flutter 

10 Oct 2018 by Meshack Musundi
Implementing the MVVM pattern in Flutter using ScopedModel
9 Jul 2018 by ThatsAlok
Let's explore the world of StateFulWidget with respect to Flutter
18 Jul 2018 by ThatsAlok
Flutter ListView: A scrollable control for everyday need
21 Jul 2018 by ThatsAlok
Let's explore Flutter Grid view and MediaQuery
4 Aug 2021 by OriginalGriff
With all the NAS's I've used, you can map a NAS folder to a virtual disk on the PC: I do it all the time with NASes. But ... using a NAS won't give you the same speed you do from a local disk - I get 500Mb/sec locally, and 35 Mb/Sec write speed...
5 Jun 2023 by Andre Oosthuizen
The easiest way is to make use of the version component to manage any updates - 1. Version your Android App steps[^] 2. How to inform the users of an Android app that a new version is available in the Google Play Store through Notification[^] 3....
28 Jan 2024 by M Imran Ansari
Unfortunately, you can’t write if statement directly inside your widget properties as if you were writing in your method or function. But there are a few ways you can write a conditional statement inside your widget. You can use the ternary...
3 Mar 2024 by M-Badger
The issue with your code is that you're trying to assign a value to value1A directly in the class body of B. In Dart, you can’t assign values to inherited variables directly in the class body. You should do this inside a method or constructor. ...
12 Jul 2018 by ThatsAlok
Flutter Navigation, Let's move among pages
31 Jul 2018 by ThatsAlok
Object Oriented Programming in DART
3 Jul 2020 by F-ES Sitecore
Not using that package, no. It's a bad idea anyway, it will annoy users if you try and override their preferences.
9 Mar 2021 by Richard MacCutchan
See Xamarin.Essentials - Xamarin | Microsoft Docs[^], but you need to be a reasonably experienced programmer.
24 Mar 2021 by Richard MacCutchan
If you are lost with Dart & Flutter, then maybe you need to start with something simpler. Try to get hold of a book on Python or C to get the fundamental ideas. Once you understand the concepts at the beginner level you can move on to the more...
24 Mar 2021 by OriginalGriff
You can't really separate "algorithms" from "coding", because they rely to a large extent on each other. In fact, there is a famous book about it: Algorithms Plus Data Structures Equals Programs (Prentice-Hall series in automatic computation):...
24 Mar 2021 by Patrice T
You have to know that you can do pretty much anything in any language, simply some languages are harder for beginners because there is more pitfalls to handle. You need to master a set of techniques that are the basis of the job and are not...
2 Jan 2022 by OriginalGriff
That's not a development question, but I'll see if I can help: there are a huge number of applications available to create images, and to a large part it depends what kind of images you want to create! For icons, I use Greenfish: Greenfish Icon...
14 Jun 2022 by Richard MacCutchan
Not sure what you googled for, but it found this for me: Build your first HCS powered web app | Hedera[^].
11 Jul 2022 by Richard MacCutchan
It is impossible to answer such a question without a detailed knowledge of Laravel, Flutter, and your web application. So you need to do some research for yourself into both products. Also, this forum is for specific technical questions, so any...
10 Aug 2022 by wseng
Something wrong on this line. child: Image1.file(File(image1.path)), child suppose return Widget, not Image1.file What is Image1 exactly? Is it the class created by you or it's an library?
17 Jan 2023 by Andre Oosthuizen
As per the documentation found HERE, try the following - var source = 'flutter app'; final decrypted = encrypter.decrypt64(source, iv: iv); For normal Direct decryption, you can use the decrypt method directly, as: final plainText =...
10 Mar 2023 by Richard MacCutchan
Look at the text, you have a space between id_ and user..
21 Jan 2024 by Richard MacCutchan
Se https://stackoverflow.com/questions/77663954/flutter-failed-to-extract-native-libraries-res-18[^]
8 Feb 2024 by Dave Kreskowiak
The message "Cannot read properties of undefined" is javascript-ese for trying to use an object that doesn't exist, or is null in other lanugages. I don't see a "providers" property or method being called anywhere in the code you posted, so that...
16 Feb 2024 by Andre Oosthuizen
You have basically answered your own question without knowing it - Quote: Then I made my consumers.py (here I'm a little bit confused, isn't it better to refer to my room unique_id instead of name, since the ID is unique and not the name in my...