colorsContent property

String colorsContent
getter/setter pair

Template for the lib/constants/colors.dart file.

Implementation

static String colorsContent = '''
import 'package:flutter/material.dart';

abstract final class AppColors {
  // Add your colors here
  // Example :
  static const primaryBlack = Color(0xFF000000);
}
''';