defaultFlutterStyle static method

dynamic defaultFlutterStyle()

Implementation

static defaultFlutterStyle() {
  h1 = TextStyle(
    fontSize: 96,
    fontWeight: FontWeight.w200,
  );
  h2 = TextStyle(
    fontSize: 60,
    fontWeight: FontWeight.w200,
  );
  h3 = TextStyle(fontSize: 48, fontWeight: FontWeight.w300);
  h4 = TextStyle(
    fontSize: 34,
    fontWeight: FontWeight.w300,
  );
  h5 = TextStyle(fontSize: 24, fontWeight: FontWeight.w300);
  h6 = TextStyle(
    fontSize: 20,
    fontWeight: FontWeight.w500,
  );
  b1 = TextStyle(fontSize: 34, fontWeight: FontWeight.w500);
  b2 = TextStyle(fontSize: 20, fontWeight: FontWeight.w400);
}