Sonnat Project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
226 B

1 year ago
  1. import 'package:flutter/material.dart';
  2. extension MainTextStyle on TextStyle {
  3. TextStyle get main {
  4. return const TextStyle(
  5. fontSize: 16,
  6. color: Colors.white,
  7. fontWeight: FontWeight.w700,
  8. );
  9. }
  10. }