fontsManagerFileContent top-level constant

String const fontsManagerFileContent

Implementation

const String fontsManagerFileContent = '''
import 'package:flutter/material.dart';

class FontFamilyManager{
  static const String defaultFamily = ""; // todo add your font family
}


class FontWeightManager{
  static const FontWeight light = FontWeight.w300;
  static const FontWeight regular = FontWeight.w400;
  static const FontWeight medium = FontWeight.w500;
  static const FontWeight semiBold = FontWeight.w600;
  static const FontWeight bold = FontWeight.w700;
  static const FontWeight boldPlus = FontWeight.w900;
  static const FontWeight w800 = FontWeight.w800;
}
''';