DEV Community

Rui.Z
Rui.Z

Posted on • Updated on

How to keep all constants in Flutter

A clean and simple way to keep constants in Flutter is to make an own Dart library in the project for the constants.

For example, we have a project structure like this.
image

constats.dart

const String BUTTON_LABEL = 'Submit';
Enter fullscreen mode Exit fullscreen mode

The const keyword is used to represent a compile-time constant. Variables declared with const keyword are implicitly final. Link

You can then use import statement to access to the constants:

import 'package:<project_name>/assets/constants.dart' as constants;
...
ElevatedButton(
  child: const Text(constants.BUTTON_LABEL),
)
...
Enter fullscreen mode Exit fullscreen mode

Latest comments (2)

Collapse
 
turskyi profile image
Dmytro Turskyi

Hi, great article, but your constant violates [constant_identifier_names]. Dart constants should be lowerCamelCase, not UPPERCASE_WITH_UNDERSCORES. This avoids name changes when constants become final non-const variables. Also, enum values are const and lowercase. So, your example should be:

// constants.dart
const String buttonLabel = 'Submit';

… No offence, just a friendly correction. 😊

Collapse
 
khalilpan profile image
khalil panahi

Nice to know 👏👏