typeweight 2.0.0 copy "typeweight: ^2.0.0" to clipboard
typeweight: ^2.0.0 copied to clipboard

outdated

Flutter plugin to help you to use more readable/clear font weight definitions.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:typeweight/typeweight.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'TypeWeight Demo',
      home: Scaffold(
        body: Center(
          child: Text(
            'TypeWeight',
            style: TextStyle(
              fontWeight: TypeWeight.black,
            ),
          ),
        ),
      ),
    );
  }
}
4
likes
0
pub points
38%
popularity

Publisher

verified publisherfrenco.dev

Flutter plugin to help you to use more readable/clear font weight definitions.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on typeweight