Top "Dart" questions

Dart is a class-based, statically(& strongly)-typed programming language for building web and mobile applications.

How do I disable a Button in Flutter?

I'm just starting to get the hang of Flutter, but I'm having trouble figuring out how to set the enabled …

button dart flutter
How to format DateTime in Flutter

I am trying to display the current DateTime in a Text widget after tapping on a button. The following works, …

datetime flutter dart
Sort a list of objects in Flutter (Dart) by property value

How to sort a list of objects by the alphabetical order of one of its properties (Not the name but …

list flutter sorting dart
Flutter: how to make a TextField with HintText but no Underline?

This is what I'm trying to make: In the Flutter docs for Text Fields (https://flutter.io/text-input/) it says …

flutter dart textfield underline hint
How to create Toast in Flutter?

Can I create something similar to Toasts in Flutter? Just a tiny notification window that is not directly in the …

flutter dart toast android-toast
Dart: mapping a list (list.map)

I have a list of Strings, e.g., var moviesTitles = ['Inception', 'Heat', 'Spider Man']; and wanted to use moviesTitles.map …

functional-programming dart flutter
Flutter screen size

I've created a new application on flutter, and I've had problems with the screen sizes when switching between different devices. …

dart screen flutter screen-size
How do I supply an initial value to a text field?

I'd like to supply an initial value to a text field and redraw it with an empty value to clear …

dart flutter
How to scroll page in flutter

My code for a page is like this. i need to scroll part below appbar. @override Widget build(BuildContext context) { …

dart scrollview flutter flutter-layout
How do I generate random numbers in Dart?

How do I generate random numbers using Dart?

random dart